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

isEqual(to:)

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

Declaration 宣言

func isEqual(to other: NSOrderedSet) -> Bool

Parameters パラメータ

other

The ordered set with which to compare the receiving ordered set. この順序集合と受け手側の順序集合を比較することになります。

Return Value 戻り値

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

Discussion 議論

Two ordered sets have equal contents if they each have the same number of members, if each member of one ordered set is present in the other, and the members are in the same order. 2つの順序集合は等しい内容を持ちます、もしそれらがそれぞれ同じ数のメンバを持つならば、もし一方の順序集合の各メンバが他方に存在する、そしてメンバが同じ順番であるならば。

See Also 参照

Comparing Sets 集合を比較する

Related Documentation 関連文書