Garden 🌻

Float::ceil()

Round this floating point value up to the nearest integer.

Example
1.1.ceil() //-> 2
1.9.ceil() //-> 2
-1.1.ceil() //-> -1
Source Code
public method ceil(this: Float): Int {
  __BUILT_IN_IMPLEMENTATION
}