func intersect(NSHashTable<ObjectType>)
func intersects(NSHashTable<ObjectType>) -> Bool
func isSubset (of: NSHashTable<ObjectType>) -> Bool
Availability 有効性
Technology
func isEqual(to other: NSHashTable
<ObjectType >) -> Bool
other
The hash table with which to compare the receiving hash table. それと受け手側ハッシュテーブルを比較することになるハッシュテーブル。
true
if the contents of other
are equal to the contents of the receiving hash table, otherwise false
.
true
、もしother
の内容が受け手側のハッシュテーブルの内容と等しいならば、そうでなければfalse
。
Two hash tables have equal contents if they each have the same number of members and if each member of one hash table is present in the other. 2つのハッシュテーブルは等しい内容を持ちます、もしそれらがそれぞれ同じ数のメンバを持つならばそして一方のハッシュテーブルの各メンバがもう一方に存在するならば。
The equality test used for members depends on the personality option selected. For instance, choosing the object
option will use is
to determine equality. See NSPointer
for more information on personality options and their corresponding equality tests.
メンバに対して使われる同等性テストは、選択されたパーソナリティオプションに依存します。インスタンスに対して、object
オプションを選ぶことは、is
を使って同等性を判定することになります。NSPointer
をパーソナリティオプションとそれらの対応する同等性テストに関するさらなる情報のために見てください。
func intersect(NSHashTable<ObjectType>)
func intersects(NSHashTable<ObjectType>) -> Bool
func isSubset (of: NSHashTable<ObjectType>) -> Bool