We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
accumulate
cumsum
Dictionary
I wish this kept the keys.
julia> let d = Dictionary([1,2,3], [10,20,30]) cumsum(d) end 3-element Vector{Int64}: 10 30 60
I can do it myself
julia> let d = Dictionary([1,2,3], [10,20,30]) Dictionary(keys(d), cumsum(d)) end 3-element Dictionary{Int64, Int64} 1 │ 10 2 │ 30 3 │ 60
it would just be nicer if I didn't have to.
The text was updated successfully, but these errors were encountered:
That’s a good idea. Currently it must be falling back to the Base method.
Sorry, something went wrong.
No branches or pull requests
I wish this kept the keys.
I can do it myself
it would just be nicer if I didn't have to.
The text was updated successfully, but these errors were encountered: