Instance Method インスタンスメソッド

contains(_:)

Returns a Boolean value indicating whether the decoder contains a value associated with the given key. 与えられたキーと結び付けられた値をデコーダが含むかどうかを指し示すブール値を返します。

Declaration 宣言

func contains(_ key: KeyedDecodingContainer<K>.Key) -> Bool

Parameters パラメータ

key

The key to search for. このキーについて調査します。

Return Value 戻り値

Whether the Decoder has an entry for the given key. Decoderが与えられたキーに対して登録項目を持つかどうか。

Discussion 解説

The value associated with the given key may be a null value as appropriate for the data format. 与えられたキーと結び付けられる値は、そのデータ形式に適切であるnull値であるかもしれません。

Relationships 関係

From Protocol 由来プロトコル