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

removeAll(keepingCapacity:)

Removes all elements from the array. 配列からすべての要素を取り除きます。

Declaration 宣言

mutating func removeAll(keepingCapacity keepCapacity: Bool = false)

Parameters パラメータ

keepCapacity

Pass true to keep the existing capacity of the array after removing its elements. The default value is false. trueを渡すと、この配列の既存の容量をそれの要素の削除後に保持します。省略時の値はfalseです。

Discussion 解説

Complexity: O(n), where n is the length of the array. 計算量:O(n)、ここでnは配列の長さです。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Removing Elements 要素の削除