Generic Instance Method 総称体インスタンスメソッド

isSubset(of:)

Returns a Boolean value that indicates whether the set is a subset of the given sequence. この集合は与えられたシーケンスの下位集合であるかどうかを指し示すブール値を返します。

Declaration 宣言

func isSubset<S>(of possibleSuperset: S) -> Bool where Element == S.Element, S : Sequence

Parameters パラメータ

possibleSuperset

A sequence of elements. possibleSuperset must be finite. いくつかの要素からなるシーケンス。possibleSupersetは有限でなければなりません。

Return Value 戻り値

true if the set is a subset of possibleSuperset; otherwise, false. true、もしこの集合がpossibleSupersetの部分集合ならば;そうでなければ、false

Discussion 解説

Set A is a subset of another set B if every member of A is also a member of B. 集合Aがもう1つの集合Bの狭義の部分集合であるのは、AのすべてのメンバがまたBのメンバである場合です。


let employees = ["Alicia", "Bethany", "Chris", "Diana", "Eric"]
let attendees: Set = ["Alicia", "Bethany", "Diana"]
print(attendees.isSubset(of: employees))
// Prints "true"

See Also 参照

Comparing Sets 集合を比較する