Omits a specified number of elements from the base asynchronous sequence, then passes through all remaining elements.
指定された数の要素を基底非同期シーケンスから除きます、それから全ての残りの要素をずっと渡します。
The number of elements to drop from the beginning of the sequence. count must be greater than or equal to zero.
このシーケンスの初めの部分から落とす要素の数。countは、ゼロより大きいか等しくなければなりません。
Return Value
戻り値
An asynchronous sequence that drops the first count elements from the base sequence.
ある非同期シーケンス、それは最初のcount要素を基底シーケンスから抜かします。
Discussion
解説
Use dropFirst(_:) when you want to drop the first n elements from the base sequence and pass through the remaining elements.dropFirst(_:)を使ってください、あなたが最初のn要素を基底シーケンスから抜かす、そして残っている要素をずっと渡したい場合は。
In this example, an asynchronous sequence called Counter produces Int values from 1 to 10. The dropFirst(_:) method causes the modified sequence to ignore the values 0 through 4, and instead emit 5 through 10:
この例において、Counterと呼ばれる非同期シーケンスはInt値を1から10まで生み出します。dropFirst(_:)メソッドは、その修正されたシーケンスに値0から4を無視させます、そして代わりに5から10を放出させます:
If the number of elements to drop exceeds the number of elements in the sequence, the result is an empty sequence.
取り除く要素の数がシーケンスの要素数を越えるならば、結果は空のシーケンスです。
An asynchronous sequence which omits a specified number of elements from the base asynchronous sequence, then passes through all remaining elements.
ある非同期シーケンス、それは指定された数の要素を基底非同期シーケンスから省きます、それから全ての残りの要素をずっと渡します。
Omits elements from the base asynchronous sequence until a given closure returns false, after which it passes through all remaining elements.
要素を基底非同期シーケンスから、ある与えられたクロージャがfalseを返すまで省きます、それの後それは全ての残りの要素をずっと渡します。
An asynchronous sequence which omits elements from the base sequence until a given closure returns false, after which it passes through all remaining elements.
ある非同期シーケンス、それは要素を基底シーケンスから、ある与えられたクロージャがfalseを返すまで省きます、それの後それは全ての残りの要素をずっと渡します。
Omits elements from the base sequence until a given error-throwing closure returns false, after which it passes through all remaining elements.
要素を基底シーケンスから、ある与えられたエラースロークロージャがfalseを返すまで省きます、それの後それは全ての残りの要素をずっと渡します。
An asynchronous sequence which omits elements from the base sequence until a given error-throwing closure returns false, after which it passes through all remaining elements.
ある非同期シーケンス、それは要素を基底シーケンスから、ある与えられたエラースロークロージャがfalseを返すまで省きます、それの後それは全ての残りの要素をずっと渡します。
Creates an asynchronous sequence that contains, in order, the elements of the base sequence that satisfy the given predicate.
ある非同期シーケンスを作成します、それは基底シーケンスの要素それらを、順番に含みます、それらは与えられた述部を満たすものです。
An asynchronous sequence that contains, in order, the elements of the base sequence that satisfy a given predicate.
ある非同期シーケンス、それは基底シーケンスの要素それらを、順番に含みます、それらは与えられた述部を満たすものです。
Creates an asynchronous sequence that contains, in order, the elements of the base sequence that satisfy the given error-throwing predicate.
ある非同期シーケンスを作成します、それは基底シーケンスの要素それらを、順番に含みます、それらは与えられたエラースロー述部を満たすものです。
An asynchronous sequence that contains, in order, the elements of the base sequence that satisfy the given error-throwing predicate.
ある非同期シーケンス、それは基底シーケンスの要素それらを、順番に含みます、それらは与えられたエラースロー述部を満たすものです。