function stable operator
zipAll<T, R>(project?: (...values: T[]) => R) project | (...values: T[]) => R | Optional. Default is |
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.
There are no parameters.
OperatorFunction<ObservableInput<T>, T[]>
zipAll(): OperatorFunction<any, T[]>There are no parameters.
OperatorFunction<any, T[]>
zipAll(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R> project | (...values: T[]) => R |
OperatorFunction<ObservableInput<T>, R>
zipAll(project: (...values: any[]) => R): OperatorFunction<any, R> project | (...values: any[]) => R |
OperatorFunction<any, R>
© 2015–2022 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