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

dropFirst(_:)

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

Declaration 宣言

func dropFirst(_ k: Int = 1) -> Self.SubSequence

Return Value 戻り値

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

Parameters パラメータ

k

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

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 "[]"