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

isSuperset(of:)

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

Declaration 宣言

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

Parameters パラメータ

possibleSubset

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

Return Value 戻り値

true if the set is a superset of possibleSubset; otherwise, false. true、この集合がpossibleSubsetの上位集合であるならば;そうでなければ、false

Discussion 解説

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


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

See Also 参照

Comparing Sets 集合を比較する