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

next()

Produces the next element in the drop-first sequence. drop-firstシーケンスの中の次の要素を生み出します。

Declaration 宣言

mutating func next() async rethrows -> Base.Element?

Discussion 解説

Until reaching the number of elements to drop, this iterator calls next() on its base iterator and discards the result. If the base iterator returns nil, indicating the end of the sequence, this iterator returns nil. After reaching the number of elements to drop, this iterator passes along the result of calling next() on the base iterator. 抜かす要素の数に到達するまで、このイテレータは、next()をそれの基底イテレータ上で呼び出します、そして結果を廃棄します。基底イテレータがnilを返して、シーケンスの終わりを指し示すならば、このイテレータはnilを返します。抜かす要素の数に到達した後、このイテレータはnext()を基底イテレータ上で呼び出す結果をずっと渡します。

Relationships 関係

From Protocol 由来プロトコル