The type of the elements in the iterable queue.
Closes the queue, immediately marking the iterable as complete and stopping the consumption of items.
Rest
...iterables: (ExtendedAsyncIterable<T> | AsyncIterable<T> | Iterable<T> | ExtendedIterable<T>)[]Optional
predicate: AsyncArrayLikePredicate<T>Forks the queue into n
sub-queues (default 2). Each sub-queue receives the same values as the original queue.
Optional
n: numberPushes a new value onto the queue, making it available for consumption.
Optional
initialValue: UOptional
initialValue: USeals the queue, preventing new values from being pushed. The queue is marked as complete once the value pool is empty.
Optional
endIndex: numberGenerated using TypeDoc
An extended async iterable that can pull from a value pool. Iterable queues can be created via the queue function.