Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/rimbu/stream/async-custom/index.ts>AsyncSplitWhereIterator

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
class AsyncSplitWhereIterator
extends AsyncFastIteratorBase<T[]>
Re-export
import { AsyncSplitWhereIterator } from "https://deno.land/x/rimbu@1.0.4/stream/async-custom/index.ts";

Constructors

new
AsyncSplitWhereIterator(source: AsyncFastIterator<T>, pred: (value: T, index: number) => MaybePromise<boolean>)

Properties

index: number

Methods

fastNext<O>(otherwise?: AsyncOptLazy<O>): Promise<T[] | O>