Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rimbu/stream/custom/index.ts>ZipAllWithItererator

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
class ZipAllWithItererator
Re-export
import { ZipAllWithItererator } from "https://deno.land/x/rimbu@1.0.2/stream/custom/index.ts";

Constructors

new
ZipAllWithItererator(
fillValue: OptLazy<F>,
iters: [K in keyof I]: StreamSource<I[K]>,
zipFun: (...values: [K in keyof I]: I[K] | F) => R,
streamSourceHelpers: StreamSourceHelpers,
)

Type Parameters

I extends readonly unknown[]
F
R

Properties

allDone: boolean
readonly
sources: FastIterator<any>[]

Methods

fastNext<O>(otherwise?: OptLazy<O>): R | O