StaticassertAsserts 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.
Will be removed in v1.2.0, use AsyncIterCore.assert instead
StaticassertAsserts that the given value is an iterable.
The type of elements contained in the iterable.
The value to check.
The value as an iterable.
StaticasyncCreates a CoreResult object which contains the result of the validation check.
The value to check.
Core Result object.
Will be removed in v1.2.0, use AsyncIterCore.result instead
StaticbuildStaticisType 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.
Will be removed in v1.2.0, use AsyncIterCore.is instead
StaticisType 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.
StaticisType 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.
Will be removed in v1.2.0, use AsyncIterCore.isNot instead
StaticisType 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.
StaticiterableCreates a CoreResult object which contains the result of the validation check.
The value to check.
Core Result object.
StaticnotChecks if the iterable does not contain the specified value.
The type of elements contained in the iterable.
true if the iterable does not contain the value; otherwise, false.
StaticoneChecks if the iterable contains the specified value.
The type of elements contained in the iterable.
true if the iterable contains the value; otherwise, false.
The core iteration functions.
Since
v1.0.0