日記
ご飯を炊くのがめんどくさかったので今日の夕飯は麻婆うどんです
今日書いたコード
https://docs.swift.org/swift-book/ReferenceManual/Declarations.html#grammar_union-style-enum-case
protocol SomeProtocol { static var someValue: Self { get } static func someFunction(x: Int) -> Self } enum MyEnum: SomeProtocol { case someValue case someFunction(x: Int) } let someProtocol: SomeProtocol = MyEnum.someValue print(type(of: someProtocol).someValue) // someValue
感想
これ言われてみるとなるほどなぁという感じだった.