(round n) rounds to the nearest integer.
round always returns an integer. Rounds up for values exactly in between two integers.
(defmulti ^{:arglists '([n])
:doc "(round n) rounds to the nearest integer.
round always returns an integer. Rounds up for values exactly in between two integers."}
round class)
Comments top
No comments for round. Log in to add a comment.