From e722e4ddf9802eade436404c3a5301c074185dff Mon Sep 17 00:00:00 2001 From: Sukera <11753998+Seelengrab@users.noreply.github.com> Date: Thu, 24 Jun 2021 15:17:07 +0200 Subject: [PATCH] Add documentation x-refs between argmax, argmin, findmin, findmax (#41338) --- base/reduce.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/base/reduce.jl b/base/reduce.jl index d8de9f8dae0b3..aed7a546e144e 100644 --- a/base/reduce.jl +++ b/base/reduce.jl @@ -900,6 +900,8 @@ Values are compared with `isless`. !!! compat "Julia 1.7" This method requires Julia 1.7 or later. +See also [`argmin`](@ref), [`findmax`](@ref). + # Examples ```jldoctest julia> argmax(abs, -10:5) @@ -950,6 +952,8 @@ If there are multiple minimal values for `f(x)` then the first one will be found !!! compat "Julia 1.7" This method requires Julia 1.7 or later. +See also [`argmax`](@ref), [`findmin`](@ref). + # Examples ```jldoctest julia> argmin(sign, -10:5)