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

subtracting(_:)

Returns a new set containing the elements of this set that do not occur in the given sequence. 与えられたシーケンスの中の現れないこの集合の要素を含んでいる新しい集合を返します。

Declaration 宣言

func subtracting<S>(_ other: S) -> Set<Element> where Element == S.Element, S : Sequence

Parameters パラメータ

other

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

Return Value 戻り値

A new set. 新しい集合。

Discussion 解説

In the following example, the nonNeighbors set is made up of the elements of the employees set that are not elements of neighbors: 次の例において、nonNeighbors集合はemployees集合の要素でneighborsの要素でないものから作り上げられます:


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

See Also 参照

Combining Sets 集合を結合する