Avatar
Avatar
Yuta Saito
その型assoctypeありましたっけ
omochimetaru 4/2/2024 2:01 PM
そうそう。本家の実装だと問題があるんだよね。
2:01 PM
public protocol ConstructibleFromJSValue { associatedtype Constructed = Self static func construct(from value: JSValue) -> Constructed? } extension Optional: ConstructibleFromJSValue where Wrapped: ConstructibleFromJSValue { public static func construct(from value: JSValue) -> Wrapped.Constructed? { switch value { case .null, .undefined: return nil default: return Wrapped.construct(from: value) } } }
2:01 PM
これ間違ってるな?