@@ -4389,7 +4389,7 @@ public Integer call(Integer t1, T t2) {
4389
4389
* @param source source Observable to compute the sum of
4390
4390
* @return an Observable that emits the sum of all the Integers emitted by
4391
4391
* the source Observable as its single item
4392
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">sum ">RxJava Wiki: sum ()</a>
4392
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">suminteger-sumlong-sumfloat-and-sumdouble ">RxJava Wiki: sumInteger ()</a>
4393
4393
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.sum.aspx">MSDN: Observable.Sum</a>
4394
4394
*/
4395
4395
public static Observable <Integer > sumInteger (Observable <Integer > source ) {
@@ -4410,7 +4410,7 @@ public static Observable<Integer> sum(Observable<Integer> source) {
4410
4410
* @param source source Observable to compute the sum of
4411
4411
* @return an Observable that emits the sum of all the Longs emitted by the
4412
4412
* source Observable as its single item
4413
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">sum ">RxJava Wiki: sumLongs ()</a>
4413
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">suminteger-sumlong-sumfloat-and-sumdouble ">RxJava Wiki: sumLong ()</a>
4414
4414
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.sum.aspx">MSDN: Observable.Sum</a>
4415
4415
*/
4416
4416
public static Observable <Long > sumLong (Observable <Long > source ) {
@@ -4426,7 +4426,7 @@ public static Observable<Long> sumLong(Observable<Long> source) {
4426
4426
* @param source source Observable to compute the sum of
4427
4427
* @return an Observable that emits the sum of all the Floats emitted by the
4428
4428
* source Observable as its single item
4429
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">sum ">RxJava Wiki: sumFloats ()</a>
4429
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">suminteger-sumlong-sumfloat-and-sumdouble ">RxJava Wiki: sumFloat ()</a>
4430
4430
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.sum.aspx">MSDN: Observable.Sum</a>
4431
4431
*/
4432
4432
public static Observable <Float > sumFloat (Observable <Float > source ) {
@@ -4442,7 +4442,7 @@ public static Observable<Float> sumFloat(Observable<Float> source) {
4442
4442
* @param source source Observable to compute the sum of
4443
4443
* @return an Observable that emits the sum of all the Doubles emitted by
4444
4444
* the source Observable as its single item
4445
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">sum ">RxJava Wiki: sumDoubles ()</a>
4445
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">suminteger-sumlong-sumfloat-and-sumdouble ">RxJava Wiki: sumDouble ()</a>
4446
4446
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.sum.aspx">MSDN: Observable.Sum</a>
4447
4447
*/
4448
4448
public static Observable <Double > sumDouble (Observable <Double > source ) {
@@ -4461,7 +4461,7 @@ public static Observable<Double> sumDouble(Observable<Double> source) {
4461
4461
* @return an Observable that emits the integer sum of the integer values
4462
4462
* corresponding to the items emitted by the source Observable
4463
4463
* transformed by the provided function
4464
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">sum ">RxJava Wiki: sumInteger()</a>
4464
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">suminteger-sumlong-sumfloat-and-sumdouble ">RxJava Wiki: sumInteger()</a>
4465
4465
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.sum.aspx">MSDN: Observable.Sum</a>
4466
4466
*/
4467
4467
public Observable <Integer > sumInteger (Func1 <? super T , Integer > valueExtractor ) {
@@ -4480,7 +4480,7 @@ public Observable<Integer> sumInteger(Func1<? super T, Integer> valueExtractor)
4480
4480
* @return an Observable that emits the long sum of the integer values
4481
4481
* corresponding to the items emitted by the source Observable
4482
4482
* transformed by the provided function
4483
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">sum ">RxJava Wiki: sumLong()</a>
4483
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">suminteger-sumlong-sumfloat-and-sumdouble ">RxJava Wiki: sumLong()</a>
4484
4484
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.sum.aspx">MSDN: Observable.Sum</a>
4485
4485
*/
4486
4486
public Observable <Long > sumLong (Func1 <? super T , Long > valueExtractor ) {
@@ -4499,7 +4499,7 @@ public Observable<Long> sumLong(Func1<? super T, Long> valueExtractor) {
4499
4499
* @return an Observable that emits the float sum of the integer values
4500
4500
* corresponding to the items emitted by the source Observable
4501
4501
* transformed by the provided function
4502
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">sum ">RxJava Wiki: sumFloat()</a>
4502
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">suminteger-sumlong-sumfloat-and-sumdouble ">RxJava Wiki: sumFloat()</a>
4503
4503
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.sum.aspx">MSDN: Observable.Sum</a>
4504
4504
*/
4505
4505
public Observable <Float > sumFloat (Func1 <? super T , Float > valueExtractor ) {
@@ -4518,7 +4518,7 @@ public Observable<Float> sumFloat(Func1<? super T, Float> valueExtractor) {
4518
4518
* @return an Observable that emits the double sum of the integer values
4519
4519
* corresponding to the items emitted by the source Observable
4520
4520
* transformed by the provided function
4521
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">sum ">RxJava Wiki: sumDouble()</a>
4521
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">suminteger-sumlong-sumfloat-and-sumdouble ">RxJava Wiki: sumDouble()</a>
4522
4522
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.sum.aspx">MSDN: Observable.Sum</a>
4523
4523
*/
4524
4524
public Observable <Double > sumDouble (Func1 <? super T , Double > valueExtractor ) {
@@ -4535,7 +4535,7 @@ public Observable<Double> sumDouble(Func1<? super T, Double> valueExtractor) {
4535
4535
* @return an Observable that emits the average of all the Integers emitted
4536
4536
* by the source Observable as its single item
4537
4537
* @throws IllegalArgumentException if the source Observable emits no items
4538
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">average ">RxJava Wiki: average ()</a>
4538
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">averageinteger-averagelong-averagefloat-and-averagedouble ">RxJava Wiki: averageInteger ()</a>
4539
4539
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.average.aspx">MSDN: Observable.Average</a>
4540
4540
*/
4541
4541
public static Observable <Integer > averageInteger (Observable <Integer > source ) {
@@ -4556,7 +4556,7 @@ public static Observable<Integer> average(Observable<Integer> source) {
4556
4556
* @param source source Observable to compute the average of
4557
4557
* @return an Observable that emits the average of all the Longs emitted by
4558
4558
* the source Observable as its single item
4559
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">average ">RxJava Wiki: averageLongs ()</a>
4559
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">averageinteger-averagelong-averagefloat-and-averagedouble ">RxJava Wiki: averageLong ()</a>
4560
4560
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.average.aspx">MSDN: Observable.Average</a>
4561
4561
*/
4562
4562
public static Observable <Long > averageLong (Observable <Long > source ) {
@@ -4572,7 +4572,7 @@ public static Observable<Long> averageLong(Observable<Long> source) {
4572
4572
* @param source source Observable to compute the average of
4573
4573
* @return an Observable that emits the average of all the Floats emitted by
4574
4574
* the source Observable as its single item
4575
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">average ">RxJava Wiki: averageFloats ()</a>
4575
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">averageinteger-averagelong-averagefloat-and-averagedouble ">RxJava Wiki: averageFloat ()</a>
4576
4576
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.average.aspx">MSDN: Observable.Average</a>
4577
4577
*/
4578
4578
public static Observable <Float > averageFloat (Observable <Float > source ) {
@@ -4588,7 +4588,7 @@ public static Observable<Float> averageFloat(Observable<Float> source) {
4588
4588
* @param source source Observable to compute the average of
4589
4589
* @return an Observable that emits the average of all the Doubles emitted
4590
4590
* by the source Observable as its single item
4591
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">average ">RxJava Wiki: averageDoubles ()</a>
4591
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">averageinteger-averagelong-averagefloat-and-averagedouble ">RxJava Wiki: averageDouble ()</a>
4592
4592
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.average.aspx">MSDN: Observable.Average</a>
4593
4593
*/
4594
4594
public static Observable <Double > averageDouble (Observable <Double > source ) {
@@ -4607,7 +4607,7 @@ public static Observable<Double> averageDouble(Observable<Double> source) {
4607
4607
* @return an Observable that emits the integer average of the complete
4608
4608
* sequence of items emitted by the source Observable when
4609
4609
* transformed into integers by the specified function
4610
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">average ">RxJava Wiki: averageInteger()</a>
4610
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">averageinteger-averagelong-averagefloat-and-averagedouble ">RxJava Wiki: averageInteger()</a>
4611
4611
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.average.aspx">MSDN: Observable.Average</a>
4612
4612
*/
4613
4613
public Observable <Integer > averageInteger (Func1 <? super T , Integer > valueExtractor ) {
@@ -4626,7 +4626,7 @@ public Observable<Integer> averageInteger(Func1<? super T, Integer> valueExtract
4626
4626
* @return an Observable that emits the long average of the complete
4627
4627
* sequence of items emitted by the source Observable when
4628
4628
* transformed into longs by the specified function
4629
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">average ">RxJava Wiki: averageLong()</a>
4629
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">averageinteger-averagelong-averagefloat-and-averagedouble ">RxJava Wiki: averageLong()</a>
4630
4630
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.average.aspx">MSDN: Observable.Average</a>
4631
4631
*/
4632
4632
public Observable <Long > averageLong (Func1 <? super T , Long > valueExtractor ) {
@@ -4645,7 +4645,7 @@ public Observable<Long> averageLong(Func1<? super T, Long> valueExtractor) {
4645
4645
* @return an Observable that emits the float average of the complete
4646
4646
* sequence of items emitted by the source Observable when
4647
4647
* transformed into floats by the specified function
4648
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">average ">RxJava Wiki: averageFloat()</a>
4648
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">averageinteger-averagelong-averagefloat-and-averagedouble ">RxJava Wiki: averageFloat()</a>
4649
4649
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.average.aspx">MSDN: Observable.Average</a>
4650
4650
*/
4651
4651
public Observable <Float > averageFloat (Func1 <? super T , Float > valueExtractor ) {
@@ -4664,7 +4664,7 @@ public Observable<Float> averageFloat(Func1<? super T, Float> valueExtractor) {
4664
4664
* @return an Observable that emits the double average of the complete
4665
4665
* sequence of items emitted by the source Observable when
4666
4666
* transformed into doubles by the specified function
4667
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">average ">RxJava Wiki: averageDouble()</a>
4667
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#%3Cspan%20class="x x-first x-last">averageinteger-averagelong-averagefloat-and-averagedouble ">RxJava Wiki: averageDouble()</a>
4668
4668
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.average.aspx">MSDN: Observable.Average</a>
4669
4669
*/
4670
4670
public Observable <Double > averageDouble (Func1 <? super T , Double > valueExtractor ) {
0 commit comments