Return length of the iterable.
aiterable (AsyncIterable[Any]) – An asynchronous iterable of objects.
Length of the iterable.
int
Examples
>>> aiterable = arange(23) >>> await alen(aiterable) 23
See also
len()
Because asyncio.gather() is not enough!
API Reference