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

isEqual(to:)

Returns a Boolean value that indicates whether the contents of the receiving dictionary are equal to the contents of another given dictionary. 受け手側の辞書の内容が別の与えられた辞書の内容と等しいかどうかを指し示すブール値を返します。

Declaration 宣言

func isEqual(to otherDictionary: [AnyHashable : Any]) -> Bool

Parameters パラメータ

otherDictionary

The dictionary with which to compare the receiving dictionary. それと受け手側の辞書を比較することになる辞書。

Return Value 戻り値

true if the contents of otherDictionary are equal to the contents of the receiving dictionary, otherwise false. true、もしotherDictionaryの内容が受け手側の配列の内容と等しいならば、そうでなければfalse

Discussion 議論

Two dictionaries have equal contents if they each hold the same number of entries and, for a given key, the corresponding value objects in each dictionary satisfy the isEqual(_:) test. 2つの辞書は、それらがめいめい同じ数の登録項目を保持して、ある与えられたキーに対して、各辞書の中の対応している値オブジェクトがisEqual(_:)テストを満足させるならば、等しいです。

See Also 参照

Related Documentation 関連文書