Guest User

Untitled

a guest
Jan 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public protocol Copyable {
  2. init(other: Self)
  3. }
  4.  
  5. public extension Copyable {
  6. public func copy() -> Self {
  7. return Self.init(other: self)
  8. }
  9. }
Add Comment
Please, Sign In to add comment