The encoder to write data to. データを書き込むエンコーダ。
Instance Method
インスタンスメソッド
encode(to:)
Encodes this value into the given encoder.
この値を与えられたエンコーダにエンコードします。
Availability
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func encode(to encoder: Encoder
) throws
Available when
ChangeElement
conforms to Decodable
and Encodable
.
ChangeElement
がDecodable
とEncodable
に準拠する場合に利用可能です。
Parameters パラメータ
encoder
Discussion 解説
If the value fails to encode anything, encoder
will encode an empty keyed container in its place.
値が何かをエンコードに失敗するならば、encoder
は空のキー付きコンテナをその場でエンコードします。
This function throws an error if any values are invalid for the given encoder’s format. この関数は、与えられたエンコーダの形式に対して何らかの値が無効であるならばエラーをスローします。
Note 注意
This documentation comment was inherited from Encodable
.
この文書化コメントは、Encodable
から引き継がれました。