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.
1 parent e58c6e6 commit 7a1f294Copy full SHA for 7a1f294
base/accumulate.jl
@@ -106,8 +106,7 @@ julia> cumsum(a, dims=2)
106
107
In the former case, the integers are widened to system word size and
108
therefore the result is `Int64[100, 128]`. In the latter case, no such
109
- widening happens and integer overflow results in `Int8[100, -128]`. See also
110
- [`Base.add_sum`](@ref)
+ widening happens and integer overflow results in `Int8[100, -128]`.
111
"""
112
function cumsum(A::AbstractArray{T}; dims::Integer) where T
113
out = similar(A, promote_op(add_sum, T, T))
0 commit comments