function deprecated operator
Replaced with zipWith. Will be removed in v8.
zip<T, R>(...sources: (ObservableInput<any> | ((...values: any[]) => R))[]): OperatorFunction<T, any> sources | (ObservableInput<any> | ((...values: any[]) => R))[] |
OperatorFunction<T, any>
zip(otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>> otherInputs | [...ObservableInputTuple<A>] |
OperatorFunction<T, Cons<T, A>>
zip(otherInputsAndProject: [...ObservableInputTuple<A>], project: (arg: T, ...rest: A) => R): OperatorFunction<T, R> otherInputsAndProject | [...ObservableInputTuple<A>] | |
project | (arg: T, ...rest: A) => R |
zip(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>> otherInputs | [...ObservableInputTuple<A>] |
OperatorFunction<T, Cons<T, A>>
zip(...otherInputsAndProject: [...ObservableInputTuple<A>, (arg: T, ...rest: A) => R]): OperatorFunction<T, R> otherInputsAndProject | [...ObservableInputTuple<A>, (arg: T, ...rest: A) => 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/zip