import Foundation public protocol Cloneable { init(copy: Self) } extension Cloneable { public func clone() -> Self { return Self.init(copy: self) } }