The number of elements to remove from the collection. k
must be greater than or equal to zero and must not exceed the number of elements in the collection.
コレクションから除去される要素の数。k
は、ゼロより大きいか等しくなければなりません、そしてコレクションの中の要素の数を超えてはいけません。
Instance Method
インスタンスメソッド
remove
removeFirst(_:)
Removes the specified number of elements from the beginning of the collection.
指定された数の要素をコレクションの始まりから除去除します。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
mutating func removeFirst(_ k: Int
)
Parameters パラメータ
k
Discussion 議論
Calling this method may invalidate any existing indices for use with this collection. このメソッドを呼び出すことは、このコレクションで使うためのあらゆる既存のインデックスを無効にします。
Complexity: O(n), where n is the length of the collection. 計算量:O(n)、ここでnはコレクションの長さです。