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

isEqual(to:)

Compares the receiving set to another set. 受け手側の集合を別の集合と比較します。

Declaration 宣言

func isEqual(to otherSet: Set<AnyHashable>) -> Bool

Parameters パラメータ

otherSet

The set with which to compare the receiving set. それと受け手側の集合を比較する集合。

Return Value 戻り値

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

Discussion 議論

Two sets have equal contents if they each have the same number of members and if each member of one set is present in the other. Object equality is tested using isEqual:. 2つの集合は等しい内容を持ちます、もしそれらがそれぞれ同じ数のメンバを持つならばそして一方の集合の各メンバがもう一方に存在するならば。オブジェクト同等性は、isEqual:を使ってテストされます。

See Also 参照

Comparing Sets 集合を比較する

Related Documentation 関連文書