Avatar
#swift-playgrounds から
12:57 PM
@swift-main protocol P { static func foo() } func callFoo<T>(_ v: T) { if let pProto = T.self as? P.Protocol { pProto.foo() } if let pType = T.self as? P.Type { pType.foo() } }