aislice
Async version of itertools.islice.
Signature:
def aislice( aiterable: AsyncIterator[_T] | AsyncIterable[_T], start: int | None = None, stop: int | None = None, step: int | None = None,) -> AsyncIterator[_T]: ...
Parameters:
-
aiterable:
- Type
-
AsyncIterator[_T] | AsyncIterable[_T]
-
start:
- Type
-
int | None
- Default
-
None
-
stop:
- Type
-
int | None
- Default
-
None
-
step:
- Type
-
int | None
- Default
-
None