Instance Method インスタンスメソッド

subtract(_:)

Removes the elements of the given set from this set. 与えられた集合の要素をこの集合から削除します。

Declaration 宣言

mutating func subtract(_ other: Set<Element>)

Parameters パラメータ

other

Another set. もう一方の集合。

Discussion 解説

In the following example, the elements of the employees set that are also members of the neighbors set are removed. In particular, the names "Bethany" and "Eric" are removed from employees. 次の例において、employees集合の要素でまたneighbors集合のメンバでもあるものは削除されます。個別的には、"Bethany""Eric"employeesから削除されます。


var employees: Set = ["Alicia", "Bethany", "Chris", "Diana", "Eric"]
let neighbors: Set = ["Bethany", "Eric", "Forlani", "Greta"]
employees.subtract(neighbors)
print(employees)
// Prints "["Diana", "Chris", "Alicia"]"

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Combining Sets 集合を結合する