Pass true
to keep the existing capacity of the array after removing its elements. The default value is false
.
true
を渡すと、この配列の既存の容量をそれの要素の削除後に保持します。省略時の値はfalse
です。
Instance Method
インスタンスメソッド
remove
removeAll(keepingCapacity:)
Removes all elements from the array.
配列からすべての要素を取り除きます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
mutating func removeAll(keepingCapacity keepCapacity: Bool
= false)
Parameters パラメータ
keepCapacity
Discussion 解説
Complexity: O(n), where n is the length of the array. 計算量:O(n)、ここでnは配列の長さです。