From 5752d574ac075813599d99dcba3b45b59c37161b Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Mon, 22 Jan 2018 04:03:55 -0500 Subject: [PATCH] undocument init --- base/reducedim.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/reducedim.jl b/base/reducedim.jl index 6c5e8c864bebd..d84085108de74 100644 --- a/base/reducedim.jl +++ b/base/reducedim.jl @@ -667,7 +667,7 @@ function findminmax!(f, Rval, Rind, A::AbstractArray{T,N}) where {T,N} end """ - findmin!(rval, rind, A, [init=true]) -> (minval, index) + findmin!(rval, rind, A) -> (minval, index) Find the minimum of `A` and the corresponding linear index along singleton dimensions of `rval` and `rind`, and store the results in `rval` and `rind`. @@ -714,7 +714,7 @@ end isgreater(a, b) = isless(b,a) """ - findmax!(rval, rind, A, [init=true]) -> (maxval, index) + findmax!(rval, rind, A) -> (maxval, index) Find the maximum of `A` and the corresponding linear index along singleton dimensions of `rval` and `rind`, and store the results in `rval` and `rind`.