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

next()

Produces the next element in the filter sequence. フィルタシーケンスの中の次の要素を生み出します。

Declaration 宣言

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

Discussion 解説

This iterator calls next() on its base iterator; if this call returns nil, next() returns nil. Otherwise, next() evaluates the result with the predicate closure. If the closure returns true, next() returns the received element; otherwise it awaits the next element from the base iterator. このイテレータは、next()をそれの基底イテレータ上で呼び出します;この呼び出しがnilを返すならば、next()はnilを返します。そうでなければ、next()は結果をpredicateクロージャで評価します。クロージャがtrueを返すならば、next()は受け取った要素を返します;そうでなければそれは次の要素を基底イテレータから待ちます。

Relationships 関係

From Protocol 由来プロトコル