Instance Method
インスタンスメソッド
isEqualToOrderedSet:
Compares the receiving ordered set to another ordered set.
受け手側の順序集合を別の順序集合と比較します。
Declaration
宣言
- (BOOL)isEqualToOrderedSet:(NSOrderedSet
<ObjectType> *)other;
Parameters
パラメータ
other
The ordered set with which to compare the receiving ordered set.
この順序集合と受け手側の順序集合を比較することになります。
Return Value
戻り値
YES
if the contents of other
are equal to the contents of the receiving ordered set, otherwise NO
.
YES
、もしother
の内容が受け手側の順序集合の内容と等しいならば、そうでなければNO
。
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
集合を比較する
- intersectsOrderedSet:
Returns a Boolean value that indicates whether at least one object in the receiving ordered set is also present in another given ordered set.
あるブール値を返します、それは受け手側の順序集合の中の少なくとも1つのオブジェクトが別の与えられた順序集合の中にも存在するかどうかを指し示します。
- intersectsSet:
Returns a Boolean value that indicates whether at least one object in the receiving ordered set is also present in another given set.
あるブール値を返します、それは受け手側の順序集合の中の少なくとも1つのオブジェクトが別の与えられた集合の中にも存在するかどうかを指し示します。
- isSubsetOfOrderedSet:
Returns a Boolean value that indicates whether every object in the receiving ordered set is also present in another given ordered set.
あるブール値を返します、それは受け手側の順序集合の中のあらゆるオブジェクトが別の与えられた順序集合の中にも存在するかどうかを指し示します。
- isSubsetOfSet:
Returns a Boolean value that indicates whether every object in the receiving ordered set is also present in another given set.
あるブール値を返します、それは受け手側の順序集合の中のあらゆるオブジェクトが別の与えられた集合の中にも存在するかどうかを指し示します。
Related Documentation
関連文書
- isEqual:
Returns a Boolean value that indicates whether the receiver and a given object are equal.
レシーバと与えられたオブジェクトが等しいかどうかを指し示すブール値を返します。