We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I was just using Observable.scan() and it has a method with an initial value but no method with an intial value factory like:
Observable.scan()
public final <R> Observable<R> scan(Func0<R> initialValue, Func2<R, ? super T, R> accumulator);
I can work around this with defer but are people happy if I submit a PR with a factory parameter (and perhaps for the reduce method as well)?
defer
reduce
The text was updated successfully, but these errors were encountered:
See #3667
Sorry, something went wrong.
Closing as duplicate to #3667.
No branches or pull requests
I was just using
Observable.scan()
and it has a method with an initial value but no method with an intial value factory like:I can work around this with
defer
but are people happy if I submit a PR with a factory parameter (and perhaps for thereduce
method as well)?The text was updated successfully, but these errors were encountered: