Merge of Pull 657: Average and Sum#698
Conversation
…into pull-657-merge
- avoiding methods with `index` - resultSelector overload is same as `reduce(seed, accumulator).map(resultSelector)`
Merge of Pull 657: Average and Sum
|
RxJava-pull-requests #615 SUCCESS |
|
I'm not crazy about the naming: average() / averageInteger(f) It doesn't seem to have much rhyme or reason to it. Why are the versions On Fri, Dec 27, 2013 at 1:18 PM, CloudBees pull request builder plugin <
David M. Gross |
|
This is actually a problem with type-erasure, not the language interop. This code ... public static Observable<Integer> average(Observable<Integer> source) {
return OperationAverage.average(source);
}
public static Observable<Double> average(Observable<Double> source) {
return OperationAverage.average(source);
}Results in this error:
|
|
We can rename the methods. Doing so now. |
|
Names standardized here: benjchristensen@f8fc1cb |
No description provided.