mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
14 lines
172 B
Swift
14 lines
172 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
protocol Copyable {
|
|
|
|
associatedtype InstanceType
|
|
|
|
func copy() -> InstanceType
|
|
}
|