The decoder to read data from. それからデータを読み出すデコーダ。
Initializer
init(from:)
Creates a new instance by decoding from the given decoder.
与えられたデコーダからデコードすることで新しいインスタンスを作成します。
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 宣言
init(from decoder: Decoder
) throws
Available when
Wrapped
conforms to Decodable
.
Wrapped
がDecodable
に準拠する時に利用可能です。
Parameters パラメータ
decoder
Discussion 解説
This initializer throws an error if reading from the decoder fails, or if the data read is corrupted or otherwise invalid. このイニシャライザは、デコーダからの読み出しが失敗するならば、または読み込んだデータが不正またはそうでなくとも無効ならば、エラーをスローします。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Encoding and Decoding エンコーディングとデコーディング
func encode(to: Encoder)
Encodes this optional value into the given encoder.
このオプショナル値を与えられたエンコーダにエンコードします。
Available when
Wrapped
conforms to Encodable
.
Wrapped
がEncodable
に準拠する時に利用可能です。
func encode(to: Encoder, configuration: Wrapped.EncodingConfiguration)
Encodes this optional value into the specified encoder with help from the provided configuration.
Available when
Wrapped
conforms to EncodableWithConfiguration
.
Wrapped
がEncodableWithConfiguration
に準拠する時に利用可能です。
typealias Optional.EncodingConfiguration
A type alias for the type that provides additional information for encoding.
Available when
Wrapped
conforms to EncodableWithConfiguration
.
Wrapped
がEncodableWithConfiguration
に準拠する時に利用可能です。
init(from: Decoder, configuration: Wrapped.DecodingConfiguration)
Creates a new instance by decoding from the given decoder with help from the provided configuration.
Available when
Wrapped
conforms to DecodableWithConfiguration
.
Wrapped
がDecodableWithConfiguration
に準拠する時に利用可能です。
typealias Optional.DecodingConfiguration
A type alias for the type that provides additional information for decoding.
Available when
Wrapped
conforms to DecodableWithConfiguration
.
Wrapped
がDecodableWithConfiguration
に準拠する時に利用可能です。