static func encode(Self.Value, to: Encoder)
Available when
Value
conforms to Encodable
.
Value
がEncodable
に準拠する時に利用可能。
Availability 有効性
Technology
Value
conforms to NSObject
and NSSecureCoding
.
Value
がNSObject
とNSSecureCoding
に準拠する時に利用可能。
value
The value to encode. エンコードする値。
encoder
The encoder to write data to. このエンコーダにデータを書き込むことになります。
The default implementation uses an NSKeyed
on the object, then calls encode(to:)
on the resulting data.
This method throws an error if writing to the encoder fails.
static func encode(Self.Value, to: Encoder)
Value
conforms to Encodable
.
Value
がEncodable
に準拠する時に利用可能。