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

intersects(_:)

Returns a Boolean value that indicates whether at least one object in the receiving set is also present in another given set. あるブール値を返します、それは受け手側の集合の中の少なくとも1つのオブジェクトが別の与えられた集合の中にも存在するかどうかを指し示します。

Declaration 宣言

func intersects(_ otherSet: Set<AnyHashable>) -> Bool

Parameters パラメータ

otherSet

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

Return Value 戻り値

true if at least one object in the receiving set is also present in otherSet, otherwise false. true、もし少なくとも受け手側の集合の中の1つのオブジェクトがまたotherSetの中に存在するならば、そうでなければfalse

Discussion 議論

Object equality is tested using isEqual:. オブジェクト同等性は、isEqual:を使ってテストされます。

See Also 参照

Comparing Sets 集合を比較する