The encoder to write data to. データを書き込むエンコーダ。
Instance Method
インスタンスメソッド
encode(to:)
Encodes this value into the given encoder.
この値を与えられたエンコーダにエンコードします。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func encode(to encoder: Encoder
) throws
Available when
Bound
conforms to Encodable
.
Bound
が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
から引き継がれました。