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

dropFirst(_:)

Returns a subsequence containing all but the given number of initial elements. 指定された数の冒頭要素以外すべてを含んでいる下位シーケンスを返します。

Declaration 宣言

func dropFirst(_ k: Int = 1) -> ArraySlice<Element>

Parameters パラメータ

k

The number of elements to drop from the beginning of the collection. k must be greater than or equal to zero. コレクションの始まりから省く要素の数。kは、ゼロより大きいか等しくなければなりません。

Return Value 戻り値

A subsequence starting after the specified number of elements. 指定された数の要素の後から始まる下位シーケンス。

Discussion 解説

If the number of elements to drop exceeds the number of elements in the collection, the result is an empty subsequence. 省かれることになる要素の数がコレクションの要素の数を越えるならば、結果は空の下位シーケンスです。


let numbers = [1, 2, 3, 4, 5]
print(numbers.dropFirst(2))
// Prints "[3, 4, 5]"
print(numbers.dropFirst(10))
// Prints "[]"

Complexity: O(1) if the collection conforms to RandomAccessCollection; otherwise, O(k), where k is the number of elements to drop from the beginning of the collection. 計算量:コレクションがRandomAccessCollectionに準拠するならば、O(1);そうでなければ、O(k)、そこでkはコレクションの冒頭から除外する要素の数です。

See Also 参照

Excluding Elements 要素を除外する