zipAll
function
stable
zipAll<T, R>(project?: (...values: T[]) => R)
Parameters
project | Optional. Default is Type: |
Overloads
zipAll(): OperatorFunction<ObservableInput<T>, T[]>
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.
Parameters
There are no parameters.
Returns
OperatorFunction<ObservableInput<T>, T[]>
zipAll(): OperatorFunction<any, T[]>
Parameters
There are no parameters.
Returns
OperatorFunction<any, T[]>
zipAll(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>
Parameters
project | Type: |
Returns
OperatorFunction<ObservableInput<T>, R>
zipAll(project: (...values: any[]) => R): OperatorFunction<any, R>
Parameters
project | Type: |
Returns
OperatorFunction<any, R>
© 2015–2021 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors.
Code licensed under an Apache-2.0 License. Documentation licensed under CC BY 4.0.
https://rxjs.dev/api/operators/zipAll