The element to remove from the set. この集合から削除されることになる要素。
Instance Method
インスタンスメソッド
remove(_:)
Removes the specified element from the set.
指定された要素を集合から削除します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
@discardableResult mutating func remove(_ member: Element) -> Element?
Parameters パラメータ
member
Return Value 戻り値
The value of the member
parameter if it was a member of the set; otherwise, nil
.
member
パラメータの値、それが集合のメンバであったならば;そうでなければ、nil
。
Discussion 解説
This example removes the element "sugar"
from a set of ingredients.
この例は、要素"sugar"
を一揃いの材料から削除します。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Removing Elements 要素の削除
func filter((Element) -> Bool) -> Set<Element>
Returns a new set containing the elements of the set that satisfy the given predicate.
この集合の要素で与えられた述部を満たすものを含んでいる新しい集合を返します。
func remove<ConcreteElement>(ConcreteElement) -> ConcreteElement?
Available when
Element
is AnyHashable
.
Element
がAnyHashable
である時に利用可能です。
func removeFirst () -> Element
Removes the first element of the set.
集合の最初の要素を削除します。
func remove(at: Set<Element>.Index) -> Element
Removes the element at the given index of the set.
与えられたインデックスでの集合の要素を返します。
func removeAll (keepingCapacity : Bool)
Removes all members from the set.
集合からすべてのメンバを削除します。