Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

zipWith

import { zipWith } from "https://raw.githubusercontent.com/surma/observables-with-streams/28c55be6d855780c677fd1f4ba975f4d3144891d/src/index.ts";

Zips items from the original observable with the other observable. See zip.

function zipWith<S, T>(other: Observable<T>): Transform<S, [S, T]>;
§
zipWith<S, T>(other: Observable<T>): Transform<S, [S, T]>
[src]

§Type Parameters

§Parameters

§
other: Observable<T>
[src]

Other observable to zip with.

§Return Type

§
Transform<S, [S, T]>
[src]

Transform that emits pairs of items.