aioplus.aall¶
- async aioplus.aall(aiterable, /)¶
Return
Trueif all items ofaiterableevaluate toTrue.- Parameters:
aiterable (AsyncIterable[SupportsBool]) – Iterable.
- Returns:
- Return type:
Examples
>>> aiterable = arange(23) >>> await aall(aiterable) False
Notes
If
aiterableis empty, thenTrueis returned.
See also