- averageDouble(Observable<Double>) - Static method in class rx.observables.MathObservable
-
Returns an Observable that emits the average of the Doubles emitted by the source Observable.
- averageDouble(Func1<? super T, Double>) - Method in class rx.observables.MathObservable
-
Returns an Observable that transforms items emitted by the source Observable into Doubles by using a
function you provide and then emits the Double average of the complete sequence of transformed values.
- averageFloat(Observable<Float>) - Static method in class rx.observables.MathObservable
-
Returns an Observable that emits the average of the Floats emitted by the source Observable.
- averageFloat(Func1<? super T, Float>) - Method in class rx.observables.MathObservable
-
Returns an Observable that transforms items emitted by the source Observable into Floats by using a
function you provide and then emits the Float average of the complete sequence of transformed values.
- averageInteger(Observable<Integer>) - Static method in class rx.observables.MathObservable
-
Returns an Observable that emits the average of the Integers emitted by the source Observable.
- averageInteger(Func1<? super T, Integer>) - Method in class rx.observables.MathObservable
-
Returns an Observable that transforms items emitted by the source Observable into Integers by using a
function you provide and then emits the Integer average of the complete sequence of transformed values.
- averageLong(Observable<Long>) - Static method in class rx.observables.MathObservable
-
Returns an Observable that emits the average of the Longs emitted by the source Observable.
- averageLong(Func1<? super T, Long>) - Method in class rx.observables.MathObservable
-
Returns an Observable that transforms items emitted by the source Observable into Longs by using a
function you provide and then emits the Long average of the complete sequence of transformed values.