floor()
Returns the largest integer less than or equal to num.
Numeric implements this by converting an Integer to a Float and invoking Float#floor.
1.floor #=> 1 (-1).floor #=> -1
static VALUE num_floor(VALUE num) { return flo_floor(rb_Float(num)); }