The position of the element to remove. index
must be a valid index of the array.
削除する要素の位置。index
は配列の有効なインデックスでなければなりません。
Instance Method
インスタンスメソッド
remove(at:)
Removes and returns the element at the specified position.
指定された位置での要素を削除して返します。
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 宣言
@discardableResult mutating func remove(at index: Int
) -> Element
Parameters パラメータ
index
Return Value 戻り値
The element at the specified index. 指定されたインデックスでの要素。
Discussion 解説
All the elements following the specified position are moved up to close the gap. 指定された位置に続く要素すべては、隔たりを埋めるように繰り上げられます。
Complexity: O(n), where n is the length of the array. 計算量:O(n)、ここでnは配列の長さです。