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

setDictionary(_:)

Sets the contents of the receiving dictionary to entries in a given dictionary. 受け手側の辞書の内容をある与えられた辞書の中の登録項目に設定します。

Declaration 宣言

func setDictionary(_ otherDictionary: [AnyHashable : Any])

Parameters パラメータ

otherDictionary

A dictionary containing the new entries. 新しい登録項目を含んでいる辞書。

Discussion 議論

All entries are removed from the receiving dictionary (with removeAllObjects()), then each entry from otherDictionary added into the receiving dictionary. 全ての登録項目は、受け手側辞書から取り除かれます(removeAllObjects()で)、それからotherDictionaryからの各登録項目は受け手側辞書へと追加されます。

See Also 参照

Adding Entries to a Mutable Dictionary 登録項目を可変辞書に加える