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

next()

Produces the next element in the map sequence. マップシーケンスの中の次の要素を生み出します。

Declaration 宣言

mutating func next() async rethrows -> Transformed?

Discussion 解説

This iterator calls next() on its base iterator; if this call returns nil, next() returns nil. Otherwise, next() returns the result of calling the transforming closure on the received element. このイテレータは、next()をそれの基底イテレータ上で呼び出します;この呼び出しがnilを返すならば、next()nilを返します。そうでなければ、next()は変換クロージャをその受け取った要素上で呼び出す結果を返します。

Relationships 関係

From Protocol 由来プロトコル