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

dropFirst(_:)

Omits a specified number of elements from the base asynchronous sequence, then passes through all remaining elements. 指定された数の要素を基底非同期シーケンスから除きます、それから全ての残りの要素をずっと渡します。

Declaration 宣言

func dropFirst(_ count: Int = 1) -> AsyncDropFirstSequence<Base>

Discussion 解説

When you call dropFirst(_:) on an asynchronous sequence that is already an AsyncDropFirstSequence, the returned sequence simply adds the new drop count to the current drop count. あなたがdropFirst(_:)をある非同期シーケンスで既にAsyncDropFirstSequenceであるものの上で呼び出す時、返されるシーケンスは単純に新しい除外総数を現在の除外総数に加えます。