The encoder to write data to. データを書き込むエンコーダ。
Instance Method
インスタンスメソッド
encode(to:)
Encodes the elements of this set into the given encoder in an unkeyed container.
この集合の要素を指定されたエンコーダへとあるキー付けされないコンテナにおいてエンコードします。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func encode(to encoder: Encoder
) throws
Available when
Element
conforms to Encodable
.
Element
がEncodable
に準拠する時に利用可能です。
Parameters パラメータ
encoder
Discussion 解説
This function throws an error if any values are invalid for the given encoder’s format. この関数は、与えられたエンコーダの形式に対して何らかの値が無効であるならばエラーをスローします。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Encoding and Decoding エンコーディングとデコーディング
init(from: Decoder)
Creates a new set by decoding from the given decoder.
与えられたデコーダからデコードすることで新しい集合を作成します。
Available when
Element
conforms to Decodable
.
Element
がDecodable
に準拠する時に利用可能です。