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

removeFirst(_:)

Removes the specified number of elements from the beginning of the collection. 指定された数の要素をコレクションの始まりから除去除します。

Declaration 宣言

mutating func removeFirst(_ k: Int)

Parameters パラメータ

k

The number of elements to remove. k must be greater than or equal to zero, and must be less than or equal to the number of elements in the collection. 除去する要素の数を返します。kは、ゼロより大きいか等しくなければなりません、そしてコレクションの要素数より少ないか等しくなければなりません。

Discussion 議論

Complexity: O(1) if the collection conforms to RandomAccessCollection; otherwise, O(k), where k is the specified number of elements. 計算量:O(1)、もしコレクションがRandomAccessCollectionに準拠するならば;そうでなければ、O(k)、ここでkは指定された要素の数です。

See Also 参照

Selecting Nodes ノードを選択する