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