Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/rimbu/stream/async-custom/async-fast-iterator-base.ts>AsyncSplitOnIterator

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

Constructors

new
AsyncSplitOnIterator(
source: AsyncFastIterator<T>,
sepElem: T,
eq: Eq<T>,
)

Properties

isDone: boolean

Methods

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