-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge of Pull 657: Average and Sum #698
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.