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