The number of elements to drop from the beginning of the sequence. k
must be greater than or equal to zero.
このシーケンスの初めの部分から落とす要素の数。k
は、ゼロより大きいか等しくなければなりません。
Instance Method
インスタンスメソッド
drop
dropFirst(_:)
Returns a sequence containing all but the given number of initial elements.
指定された数の冒頭要素以外すべてを含んでいるあるシーケンスを返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func dropFirst(_ k: Int
= 1) -> DropFirstSequence
<JoinedSequence
<Base>>
Parameters パラメータ
k
Return Value 戻り値
A sequence starting after the specified number of elements. 指定された数の要素の後で始まるシーケンス。
Discussion 解説
If the number of elements to drop exceeds the number of elements in the sequence, the result is an empty sequence. 取り除く要素の数がシーケンスの要素数を越えるならば、結果は空のシーケンスです。
Complexity: O(1), with O(k) deferred to each iteration of the result, where k is the number of elements to drop from the beginning of the sequence. 計算量:O(1)、結果の各反復に対してO(k)延期されて、ここでkはシーケンスの冒頭から除かれる要素の数です。