Static
assertAsserts that the given value is an async iterable.
The type of elements contained in the async iterable.
The value to check.
The value as an async iterable.
Static
assertStatic
buildStatic
buildStatic
isType guard that checks if a value is an async iterable object.
The type of elements contained in the async iterable.
The value to check for async iterability.
true
if the value implements the AsyncIterable
interface; otherwise, false
.
Static
isType guard that checks if a value is an iterable object.
The type of elements contained in the iterable.
The value to check for iterability.
true
if the value implements the Iterable
interface; otherwise, false
.
Static
isType guard that checks if a value is not an async iterable object.
The type of elements contained in the async iterable.
The value to check for non-async iterability.
true
if the value does not implement the AsyncIterable
interface; otherwise, false
.
Static
isType guard that checks if a value is not an iterable object.
The type of elements contained in the iterable.
The value to check for non-iterability.
true
if the value does not implement the Iterable
interface; otherwise, false
.
The core iteration functions.
Since
v1.0.0