文書   >   Foundation   >   Archives and Serialization   >   JSONEncoder   >   JSONEncoder.OutputFormatting   >   isSuperset(of:)
インスタンスメソッド
isSuperset(of:)
セットが指定されたセットのスーパーセットかどうかを示すブール値を返します。
宣言
パラメータ
other | 現在のセットと同じ型のセット。 |
戻り値
セットが other のスーパーセットである場合は true、そうでない場合は false。
議論
B のすべてのメンバが A のメンバーでもある場合、set A は別の set B のスーパーセットです。
let employees: Set = ["Alicia", "Bethany", "Chris", "Diana", "Eric"]
let attendees: Set = ["Alicia", "Bethany", "Diana"]
print(employees.isSuperset(of: attendees))
// Prints "true"