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

zipAll

Collects all observable inner sources from the source, once the source completes, it will subscribe to all inner sources, combining their values by index and emitting them.

function zipAll<T>(): OperatorFunction<ObservableInput<T>, T[]>;
function zipAll<T>(): OperatorFunction<any, T[]>;
function zipAll<T, R>(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>;
function zipAll<R>(project: (...values: Array<any>) => R): OperatorFunction<any, R>;
§

Collects all observable inner sources from the source, once the source completes, it will subscribe to all inner sources, combining their values by index and emitting them.

§Type Parameters

§
zipAll<T>(): OperatorFunction<any, T[]>
[src]

§Type Parameters

§Return Type

§
zipAll<T, R>(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>
[src]

§Type Parameters

§Parameters

§
project: (...values: T[]) => R
[src]
§
zipAll<R>(project: (...values: Array<any>) => R): OperatorFunction<any, R>
[src]

§Type Parameters

§Parameters

§
project: (...values: Array<any>) => R
[src]

§Return Type