mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-03 00:54:42 +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
|
||
|
}
|