func isEqual (Any?) -> Bool
Returns a Boolean value that indicates whether the receiver and a given object are equal.
レシーバと与えられたオブジェクトが等しいかどうかを指し示すブール値を返します。
Availability 有効性
Technology
func isEqual(to otherDictionary: [AnyHashable
: Any]) -> Bool
otherDictionary
The dictionary with which to compare the receiving dictionary. それと受け手側の辞書を比較することになる辞書。
true
if the contents of other
are equal to the contents of the receiving dictionary, otherwise false
.
true
、もしother
の内容が受け手側の配列の内容と等しいならば、そうでなければfalse
。
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 is
test.
2つの辞書は、それらがめいめい同じ数の登録項目を保持して、ある与えられたキーに対して、各辞書の中の対応している値オブジェクトがis
テストを満足させるならば、等しいです。
func isEqual (Any?) -> Bool