Skip to main content
Module

x/rimbu/mod.ts>AsyncTransformer.flatZip

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Latest
function AsyncTransformer.flatZip
import { AsyncTransformer } from "https://deno.land/x/rimbu@1.2.1/mod.ts";
const { flatZip } = AsyncTransformer;

Returns an async transformer that applies the given flatMap function to each element of the input stream, and concatenates all the resulting resulting streams into one stream, where each resulting element is tupled with the originating input element.

Parameters

flatMapFun: (
value: T,
index: number,
halt: () => void,
) => MaybePromise<AsyncStreamSource<T2>>
  • a potentially async function that maps each input element to an AsyncStreamSource. The function receives three parameters:
  • value: the current element being processed
  • index: the index of the current element in the input stream
  • halt: a function that can be called to halt further processing of the input stream