Type Method
型メソッド
encode(_:to:)
Declaration
宣言
static func encode(_ value: Self.Value
, to encoder: Encoder
) throws
Available when
Value
conforms to Encodable
.
Value
がEncodable
に準拠する時に利用可能。
Parameters
パラメータ
value
The value to encode.
エンコードする値。
encoder
The encoder to write data to.
このエンコーダにデータを書き込むことになります。
Discussion
議論
The default implementation calls down to the value’s encode(to:)
method.
This method throws an error if writing the encoder fails.
See Also
参照
EncodableAttributedStringKey Implementations
static func encode(Self.Value, to: Encoder)
Encodes an Objective-C value to the provided encoder, using a default implementation.
Available when
Value
conforms to NSObject
and NSSecureCoding
.
Value
がNSObject
とNSSecureCoding
に準拠する時に利用可能。