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

isStrictSuperset(of:)

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

Declaration 宣言

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

Parameters パラメータ

possibleStrictSubset

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

Return Value 戻り値

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

Discussion 解説

Set A is a strict superset of another set B if every member of B is also a member of A and A contains at least one element that is not a member of B. 集合Aがもう1つの集合Bの狭義の上位集合であるのは、BのすべてのメンバがまたAのメンバであり、Aが少なくとも1つのBのメンバではない要素を含む場合です。


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

See Also 参照

Comparing Sets 集合を比較する