AsyncSequence works a lot like the regular Sequence protocol in the Swift Standard Library: it provides an asynchronous version of the Iterator protocol that offers async iterated access to the next() element.
This iteration can be invoked using the for-await-in syntax sugar.
Comments
This iteration can be invoked using the for-await-in syntax sugar.