| macro | since v1.12.116 | Edit |
(unchecked-max x)(unchecked-max x y)(unchecked-max x y & more)(core/defmacro ^::ana/numeric unchecked-max
([x] x)
([x y]
`(let [x# ~x, y# ~y]
(if (> x# y#) x# y#)))
([x y & more]
`(max (max ~x ~y) ~@more)))