From 912460bb7418ac68139dde9fdd854314bd32c6cd Mon Sep 17 00:00:00 2001 From: Jeff Fessler Date: Fri, 15 Mar 2024 00:46:03 -0400 Subject: [PATCH] =?UTF-8?q?Use=20Julian=20way=20`=E2=89=A5(0)`=20in=20`fin?= =?UTF-8?q?dall`=20docs=20(#53740)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I'm pretty sure the manual advises against `x -> x >= 0` :) --- base/array.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/array.jl b/base/array.jl index 76d5981ba8861..ef91077dd6e96 100644 --- a/base/array.jl +++ b/base/array.jl @@ -2635,7 +2635,7 @@ Dict{Symbol, Int64} with 3 entries: :B => -1 :C => 0 -julia> findall(x -> x >= 0, d) +julia> findall(≥(0), d) 2-element Vector{Symbol}: :A :C