Skip to content

Instantly share code, notes, and snippets.

@SergeyPetrachkov
Created January 11, 2018 10:08
Show Gist options
  • Save SergeyPetrachkov/08454a16bc5d2f64a9b1772d260f337b to your computer and use it in GitHub Desktop.
Save SergeyPetrachkov/08454a16bc5d2f64a9b1772d260f337b to your computer and use it in GitHub Desktop.
Copyable in Swift
public protocol Copyable {
init(other: Self)
}
public extension Copyable {
public func copy() -> Self {
return Self.init(other: self)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment