method
div
ruby latest stable - Class:
Integer
div(p1)public
Performs integer division: returns the integer result of dividing int by numeric.
VALUE
rb_int_idiv(VALUE x, VALUE y)
{
if (FIXNUM_P(x)) {
return fix_idiv(x, y);
}
else if (RB_TYPE_P(x, T_BIGNUM)) {
return rb_big_idiv(x, y);
}
return num_div(x, y);
}