A set of the same type as the current set. 現在の集合と同じ型の集合。
Instance Method
インスタンスメソッド
subtracting(_:)
Returns a new set containing the elements of this set that do not occur in the given set.
与えられた集合の中の現れないこの集合の要素を含んでいる新しい集合を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func subtracting(_ other: Self) -> Self
Parameters パラメータ
other
Return Value 戻り値
A new set. 新しい集合。
Discussion 解説
In the following example, the non
set is made up of the elements of the employees
set that are not elements of neighbors
:
次の例において、non
集合はemployees
集合の要素でneighbors
の要素でないものから作り上げられます: