@@ -42,7 +42,7 @@ public static <T> MathObservable<T> from(Observable<T> o) {
42
42
/**
43
43
* Returns an Observable that emits the average of the Doubles emitted by the source Observable.
44
44
* <p>
45
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
45
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="" >
46
46
*
47
47
* @param source
48
48
* source Observable to compute the average of
@@ -58,7 +58,7 @@ public final static Observable<Double> averageDouble(Observable<Double> source)
58
58
/**
59
59
* Returns an Observable that emits the average of the Floats emitted by the source Observable.
60
60
* <p>
61
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
61
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="" >
62
62
*
63
63
* @param source
64
64
* source Observable to compute the average of
@@ -74,7 +74,7 @@ public final static Observable<Float> averageFloat(Observable<Float> source) {
74
74
/**
75
75
* Returns an Observable that emits the average of the Integers emitted by the source Observable.
76
76
* <p>
77
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
77
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="" >
78
78
*
79
79
* @param source
80
80
* source Observable to compute the average of
@@ -92,7 +92,7 @@ public final static Observable<Integer> averageInteger(Observable<Integer> sourc
92
92
/**
93
93
* Returns an Observable that emits the average of the Longs emitted by the source Observable.
94
94
* <p>
95
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
95
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="" >
96
96
*
97
97
* @param source
98
98
* source Observable to compute the average of
@@ -110,7 +110,7 @@ public final static Observable<Long> averageLong(Observable<Long> source) {
110
110
* numeric value. If there is more than one item with the same maximum value, it emits the last-emitted of
111
111
* these.
112
112
* <p>
113
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png">
113
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png" alt="" >
114
114
*
115
115
* @param source
116
116
* an Observable to scan for the maximum emitted item
@@ -128,7 +128,7 @@ public final static <T extends Comparable<? super T>> Observable<T> max(Observab
128
128
* Returns an Observable that emits the single numerically minimum item emitted by the source Observable.
129
129
* If there is more than one such item, it returns the last-emitted one.
130
130
* <p>
131
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png">
131
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png" alt="" >
132
132
*
133
133
* @param source
134
134
* an Observable to determine the minimum item of
@@ -144,7 +144,7 @@ public final static <T extends Comparable<? super T>> Observable<T> min(Observab
144
144
/**
145
145
* Returns an Observable that emits the sum of all the Doubles emitted by the source Observable.
146
146
* <p>
147
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
147
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="" >
148
148
*
149
149
* @param source
150
150
* the source Observable to compute the sum of
@@ -160,7 +160,7 @@ public final static Observable<Double> sumDouble(Observable<Double> source) {
160
160
/**
161
161
* Returns an Observable that emits the sum of all the Floats emitted by the source Observable.
162
162
* <p>
163
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
163
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="" >
164
164
*
165
165
* @param source
166
166
* the source Observable to compute the sum of
@@ -176,7 +176,7 @@ public final static Observable<Float> sumFloat(Observable<Float> source) {
176
176
/**
177
177
* Returns an Observable that emits the sum of all the Integers emitted by the source Observable.
178
178
* <p>
179
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
179
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="" >
180
180
*
181
181
* @param source
182
182
* source Observable to compute the sum of
@@ -192,7 +192,7 @@ public final static Observable<Integer> sumInteger(Observable<Integer> source) {
192
192
/**
193
193
* Returns an Observable that emits the sum of all the Longs emitted by the source Observable.
194
194
* <p>
195
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
195
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="" >
196
196
*
197
197
* @param source
198
198
* source Observable to compute the sum of
@@ -209,7 +209,7 @@ public final static Observable<Long> sumLong(Observable<Long> source) {
209
209
* Returns an Observable that transforms items emitted by the source Observable into Doubles by using a
210
210
* function you provide and then emits the Double average of the complete sequence of transformed values.
211
211
* <p>
212
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
212
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="" >
213
213
*
214
214
* @param valueExtractor
215
215
* the function to transform an item emitted by the source Observable into a Double
@@ -226,7 +226,7 @@ public final Observable<Double> averageDouble(Func1<? super T, Double> valueExtr
226
226
* Returns an Observable that transforms items emitted by the source Observable into Floats by using a
227
227
* function you provide and then emits the Float average of the complete sequence of transformed values.
228
228
* <p>
229
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
229
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="" >
230
230
*
231
231
* @param valueExtractor
232
232
* the function to transform an item emitted by the source Observable into a Float
@@ -243,7 +243,7 @@ public final Observable<Float> averageFloat(Func1<? super T, Float> valueExtract
243
243
* Returns an Observable that transforms items emitted by the source Observable into Integers by using a
244
244
* function you provide and then emits the Integer average of the complete sequence of transformed values.
245
245
* <p>
246
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
246
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="" >
247
247
*
248
248
* @param valueExtractor
249
249
* the function to transform an item emitted by the source Observable into an Integer
@@ -260,7 +260,7 @@ public final Observable<Integer> averageInteger(Func1<? super T, Integer> valueE
260
260
* Returns an Observable that transforms items emitted by the source Observable into Longs by using a
261
261
* function you provide and then emits the Long average of the complete sequence of transformed values.
262
262
* <p>
263
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
263
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="" >
264
264
*
265
265
* @param valueExtractor
266
266
* the function to transform an item emitted by the source Observable into a Long
@@ -278,7 +278,7 @@ public final Observable<Long> averageLong(Func1<? super T, Long> valueExtractor)
278
278
* specified comparator. If there is more than one item with the same maximum value, it emits the
279
279
* last-emitted of these.
280
280
* <p>
281
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png">
281
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png" alt="" >
282
282
*
283
283
* @param comparator
284
284
* the comparer used to compare items
@@ -297,7 +297,7 @@ public final Observable<T> max(Comparator<? super T> comparator) {
297
297
* Returns an Observable that emits the minimum item emitted by the source Observable, according to a
298
298
* specified comparator. If there is more than one such item, it returns the last-emitted one.
299
299
* <p>
300
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png">
300
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png" alt="" >
301
301
*
302
302
* @param comparator
303
303
* the comparer used to compare elements
@@ -316,7 +316,7 @@ public final Observable<T> min(Comparator<? super T> comparator) {
316
316
* Returns an Observable that extracts a Double from each of the items emitted by the source Observable via
317
317
* a function you specify, and then emits the sum of these Doubles.
318
318
* <p>
319
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
319
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="" >
320
320
*
321
321
* @param valueExtractor
322
322
* the function to extract a Double from each item emitted by the source Observable
@@ -333,7 +333,7 @@ public final Observable<Double> sumDouble(Func1<? super T, Double> valueExtracto
333
333
* Returns an Observable that extracts a Float from each of the items emitted by the source Observable via
334
334
* a function you specify, and then emits the sum of these Floats.
335
335
* <p>
336
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
336
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="" >
337
337
*
338
338
* @param valueExtractor
339
339
* the function to extract a Float from each item emitted by the source Observable
@@ -350,7 +350,7 @@ public final Observable<Float> sumFloat(Func1<? super T, Float> valueExtractor)
350
350
* Returns an Observable that extracts an Integer from each of the items emitted by the source Observable
351
351
* via a function you specify, and then emits the sum of these Integers.
352
352
* <p>
353
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
353
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="" >
354
354
*
355
355
* @param valueExtractor
356
356
* the function to extract an Integer from each item emitted by the source Observable
@@ -367,7 +367,7 @@ public final Observable<Integer> sumInteger(Func1<? super T, Integer> valueExtra
367
367
* Returns an Observable that extracts a Long from each of the items emitted by the source Observable via a
368
368
* function you specify, and then emits the sum of these Longs.
369
369
* <p>
370
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
370
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="" >
371
371
*
372
372
* @param valueExtractor
373
373
* the function to extract a Long from each item emitted by the source Observable
0 commit comments