Instance Method
インスタンスメソッド
removeFirst(_:)
Removes the specified number of elements from the beginning of the collection.
指定された数の要素をコレクションの始まりから削除します。
Technology
- Swift Standard Library
Swift標準ライブラリ
Declaration
宣言
mutating func removeFirst(_ k: Int
)
Available when Self
is
SubSequence
.
Self
が
SubSequence
である時に利用可能です。
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 and Excluding Elements
要素の選択と除外
func popFirst() -> Self.Element?
Removes and returns the first element of the collection.
コレクションの最初の要素を削除して返します。
Available when Self
is
SubSequence
.
Self
が
SubSequence
である時に利用可能です。
func removeFirst() -> Self.Element
Removes and returns the first element of the collection.
コレクションの最初の要素を削除して返します。
Available when Self
is
SubSequence
.
Self
が
SubSequence
である時に利用可能です。