@@ -2619,7 +2619,7 @@ public final static <T, Resource> Observable<T> using(
2619
2619
}
2620
2620
2621
2621
/**
2622
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2622
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2623
2623
* items emitted, in sequence, by an Iterable of other Observables.
2624
2624
* <p>
2625
2625
* {@code zip} applies this function in strict sequence, so the first item emitted by the new Observable
@@ -2654,7 +2654,7 @@ public final static <R> Observable<R> zip(Iterable<? extends Observable<?>> ws,
2654
2654
}
2655
2655
2656
2656
/**
2657
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2657
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2658
2658
* <i>n</i> items emitted, in sequence, by the <i>n</i> Observables emitted by a specified Observable.
2659
2659
* <p>
2660
2660
* {@code zip} applies this function in strict sequence, so the first item emitted by the new Observable
@@ -2692,7 +2692,7 @@ public Observable<?>[] call(List<? extends Observable<?>> o) {
2692
2692
}
2693
2693
2694
2694
/**
2695
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2695
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2696
2696
* two items emitted, in sequence, by two other Observables.
2697
2697
* <p>
2698
2698
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2726,7 +2726,7 @@ public final static <T1, T2, R> Observable<R> zip(Observable<? extends T1> o1, O
2726
2726
}
2727
2727
2728
2728
/**
2729
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2729
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2730
2730
* three items emitted, in sequence, by three other Observables.
2731
2731
* <p>
2732
2732
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2763,7 +2763,7 @@ public final static <T1, T2, T3, R> Observable<R> zip(Observable<? extends T1> o
2763
2763
}
2764
2764
2765
2765
/**
2766
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2766
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2767
2767
* four items emitted, in sequence, by four other Observables.
2768
2768
* <p>
2769
2769
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2802,7 +2802,7 @@ public final static <T1, T2, T3, T4, R> Observable<R> zip(Observable<? extends T
2802
2802
}
2803
2803
2804
2804
/**
2805
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2805
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2806
2806
* five items emitted, in sequence, by five other Observables.
2807
2807
* <p>
2808
2808
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2843,7 +2843,7 @@ public final static <T1, T2, T3, T4, T5, R> Observable<R> zip(Observable<? exten
2843
2843
}
2844
2844
2845
2845
/**
2846
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2846
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2847
2847
* six items emitted, in sequence, by six other Observables.
2848
2848
* <p>
2849
2849
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2886,7 +2886,7 @@ public final static <T1, T2, T3, T4, T5, T6, R> Observable<R> zip(Observable<? e
2886
2886
}
2887
2887
2888
2888
/**
2889
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2889
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2890
2890
* seven items emitted, in sequence, by seven other Observables.
2891
2891
* <p>
2892
2892
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2931,7 +2931,7 @@ public final static <T1, T2, T3, T4, T5, T6, T7, R> Observable<R> zip(Observable
2931
2931
}
2932
2932
2933
2933
/**
2934
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2934
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2935
2935
* eight items emitted, in sequence, by eight other Observables.
2936
2936
* <p>
2937
2937
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
@@ -2978,7 +2978,7 @@ public final static <T1, T2, T3, T4, T5, T6, T7, T8, R> Observable<R> zip(Observ
2978
2978
}
2979
2979
2980
2980
/**
2981
- * Returns an Observable that emits the results of a function of your choosing applied to combinations of
2981
+ * Returns an Observable that emits the results of a specified combiner function applied to combinations of
2982
2982
* nine items emitted, in sequence, by nine other Observables.
2983
2983
* <p>
2984
2984
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
0 commit comments