exact ceiling - part-cw/lambdanative GitHub Wiki

(exact-ceiling x)

exact-ceiling returns a rounded number. This one rounds up!

Parameter Description
x Number to be rounded

Example

Example 1: Round a number

> (exact-ceiling 3.1)
4
> (exact-ceiling 3.999)  
4