Instance Method
インスタンスメソッド
isEqualToDictionary:
Returns a Boolean value that indicates whether the contents of the receiving dictionary are equal to the contents of another given dictionary.
受け手側の辞書の内容が別の与えられた辞書の内容と等しいかどうかを指し示すブール値を返します。
Declaration
宣言
- (BOOL)isEqualToDictionary:(NSDictionary
<KeyType, ObjectType> *)otherDictionary;
Parameters
パラメータ
otherDictionary
The dictionary with which to compare the receiving dictionary.
それと受け手側の辞書を比較することになる辞書。
Return Value
戻り値
YES
if the contents of otherDictionary
are equal to the contents of the receiving dictionary, otherwise NO
.
YES
、もしotherDictionary
の内容が受け手側の配列の内容と等しいならば、そうでなければNO
。
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
関連文書
- isEqual:
Returns a Boolean value that indicates whether the receiver and a given object are equal.
レシーバと与えられたオブジェクトが等しいかどうかを指し示すブール値を返します。