-
Notifications
You must be signed in to change notification settings - Fork 77
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
Do we need Accumulate #30
Comments
@patriknw, @ktoso, (other Akka team members), |
The custom stage is more efficient, however it does not show good example to users (build from existing ops), so maybe better removing it. |
I agree with deprecation and mention scan+drop as a replacement. |
According to the docs (I wrote): "This stage emits folded values like
scan
, but the first element emitted is not the zero value but the result of applying the given function to the given zero value and the first pushed element."The same can be achieved with
scan(...)(...).drop(1)
.What do others think?
The text was updated successfully, but these errors were encountered: