A set of the same type as the current set. 現在の集合と同じ型の集合。
Instance Method
インスタンスメソッド
is
isDisjoint(with:)
Returns a Boolean value that indicates whether the set has no members in common with the given set.
この集合が、与えられた集合と共通のメンバを1つも持たないかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func isDisjoint(with other: Self) -> Bool
Parameters パラメータ
other
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
集合と交わりを持ちません、両方に現れる名前がないからです。