@@ -3084,6 +3084,7 @@ public final Observable<Boolean> all(Func1<? super T, Boolean> predicate) {
3084
3084
* emitted an item
3085
3085
* @see <a href="https://github.com/Netflix/RxJava/wiki/Conditional-and-Boolean-Operators#wiki-amb">RxJava Wiki: amb()</a>
3086
3086
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229733.aspx">MSDN: Observable.Amb</a>
3087
+ * @since 0.20
3087
3088
*/
3088
3089
public final Observable <T > ambWith (Observable <? extends T > t1 ) {
3089
3090
return amb (this , t1 );
@@ -3495,8 +3496,8 @@ public final <R> Observable<R> concatMap(Func1<? super T, ? extends Observable<?
3495
3496
}
3496
3497
3497
3498
/**
3498
- * Returns an Observable that emits the items emitted from the current Observable, then the next, one after the other, without
3499
- * interleaving them.
3499
+ * Returns an Observable that emits the items emitted from the current Observable, then the next, one after
3500
+ * the other, without interleaving them.
3500
3501
* <p>
3501
3502
* <img width="640" height="380" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/concat.png">
3502
3503
* <p>
@@ -3508,6 +3509,7 @@ public final <R> Observable<R> concatMap(Func1<? super T, ? extends Observable<?
3508
3509
* without interleaving them
3509
3510
* @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#wiki-concat">RxJava Wiki: concat()</a>
3510
3511
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.concat.aspx">MSDN: Observable.Concat</a>
3512
+ * @since 0.20
3511
3513
*/
3512
3514
public final Observable <T > concatWith (Observable <? extends T > t1 ) {
3513
3515
return concat (this , t1 );
@@ -4819,6 +4821,7 @@ public final <U, R> Observable<R> mergeMapIterable(Func1<? super T, ? extends It
4819
4821
* @return an Observable that emits all of the items emitted by the source Observables
4820
4822
* @see <a href="https://github.com/Netflix/RxJava/wiki/Combining-Observables#wiki-merge">RxJava Wiki: merge()</a>
4821
4823
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229099.aspx">MSDN: Observable.Merge</a>
4824
+ * @since 0.20
4822
4825
*/
4823
4826
public final Observable <T > mergeWith (Observable <? extends T > t1 ) {
4824
4827
return merge (this , t1 );
0 commit comments