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

isDisjoint(with:)

Returns a Boolean value that indicates whether this set has no members in common with the given set. この集合は与えられた集合と共通のメンバを1つも持たないかどうかを指し示すブール値を返します。

Declaration 宣言

func isDisjoint(with other: Set<Element>) -> Bool

Parameters パラメータ

other

Another set. もう一方の集合。

Return Value 戻り値

true if the set has no elements in common with other; otherwise, false. この集合がotherと共通の要素を持たないならばtrue;そうでなければ、false

Discussion 解説

In the following example, the employees set is disjoint with the visitors set because no name appears in both sets. 次の例において、employees集合はvisitors集合と交わりを持ちません、両方に現れる名前がないからです。


let employees: Set = ["Alicia", "Bethany", "Chris", "Diana", "Eric"]
let visitors: Set = ["Marcia", "Nathaniel", "Olivia"]
print(employees.isDisjoint(with: visitors))
// Prints "true"

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Comparing Sets 集合を比較する