clojure icon indicating copy to clipboard operation
clojure copied to clipboard

Rounding numbers - decimal to integer

Open practicalli-johnny opened this issue 3 years ago • 0 comments

what is the idiomatic way of rounding numbers?

(format ".%2f" val) ;; okay for printing / display

(-> val (* 100) Math/round (/ 100)) ;; preferred when using as a value

practicalli-johnny avatar Nov 20 '21 09:11 practicalli-johnny