Skip to content

Commit

Permalink
make javadoc for zip() variants more precise (ReactiveX#1858)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMGross committed Nov 10, 2014
1 parent 37afd53 commit 1ea6d15
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -2619,7 +2619,7 @@ public final static <T, Resource> Observable<T> using(
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* items emitted, in sequence, by an Iterable of other Observables.
* <p>
* {@code zip} applies this function in strict sequence, so the first item emitted by the new Observable
Expand Down Expand Up @@ -2654,7 +2654,7 @@ public final static <R> Observable<R> zip(Iterable<? extends Observable<?>> ws,
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* <i>n</i> items emitted, in sequence, by the <i>n</i> Observables emitted by a specified Observable.
* <p>
* {@code zip} applies this function in strict sequence, so the first item emitted by the new Observable
Expand Down Expand Up @@ -2692,7 +2692,7 @@ public Observable<?>[] call(List<? extends Observable<?>> o) {
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* two items emitted, in sequence, by two other Observables.
* <p>
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
Expand Down Expand Up @@ -2726,7 +2726,7 @@ public final static <T1, T2, R> Observable<R> zip(Observable<? extends T1> o1, O
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* three items emitted, in sequence, by three other Observables.
* <p>
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
Expand Down Expand Up @@ -2763,7 +2763,7 @@ public final static <T1, T2, T3, R> Observable<R> zip(Observable<? extends T1> o
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* four items emitted, in sequence, by four other Observables.
* <p>
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
Expand Down Expand Up @@ -2802,7 +2802,7 @@ public final static <T1, T2, T3, T4, R> Observable<R> zip(Observable<? extends T
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* five items emitted, in sequence, by five other Observables.
* <p>
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
Expand Down Expand Up @@ -2843,7 +2843,7 @@ public final static <T1, T2, T3, T4, T5, R> Observable<R> zip(Observable<? exten
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* six items emitted, in sequence, by six other Observables.
* <p>
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
Expand Down Expand Up @@ -2886,7 +2886,7 @@ public final static <T1, T2, T3, T4, T5, T6, R> Observable<R> zip(Observable<? e
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* seven items emitted, in sequence, by seven other Observables.
* <p>
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
Expand Down Expand Up @@ -2931,7 +2931,7 @@ public final static <T1, T2, T3, T4, T5, T6, T7, R> Observable<R> zip(Observable
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* eight items emitted, in sequence, by eight other Observables.
* <p>
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
Expand Down Expand Up @@ -2978,7 +2978,7 @@ public final static <T1, T2, T3, T4, T5, T6, T7, T8, R> Observable<R> zip(Observ
}

/**
* Returns an Observable that emits the results of a function of your choosing applied to combinations of
* Returns an Observable that emits the results of a specified combiner function applied to combinations of
* nine items emitted, in sequence, by nine other Observables.
* <p>
* <img width="640" height="380" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/zip.png" alt="">
Expand Down

0 comments on commit 1ea6d15

Please sign in to comment.