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

remove(at:)

Removes the element at the given index of the set. 与えられたインデックスでの集合の要素を返します。

Declaration 宣言

@discardableResult mutating func remove(at position: Set<Element>.Index) -> Element

Parameters パラメータ

position

The index of the member to remove. position must be a valid index of the set, and must not be equal to the set’s end index. 削除するメンバのインデックス。positionは、この集合の有効なインデックスでなければなりません、そしてこの集合の持つ末尾インデックスと等しくてはなりません。

Return Value 戻り値

The element that was removed from the set. この集合から削除された要素。

See Also 参照

Removing Elements 要素の削除