Float::ceil()
Round this floating point value up to the nearest integer.
1.1.ceil() //-> 2 1.9.ceil() //-> 2 -1.1.ceil() //-> -1
public method ceil(this: Float): Int { __BUILT_IN_IMPLEMENTATION }