Garden 🌻

Float::floor()

Round this floating point value down to the nearest integer.

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