method
modulo
ruby latest stable - Class:
Integer
modulo(p1)public
Returns int modulo other.
See Numeric#divmod for more information.
VALUE
rb_int_modulo(VALUE x, VALUE y)
{
if (FIXNUM_P(x)) {
return fix_mod(x, y);
}
else if (RB_TYPE_P(x, T_BIGNUM)) {
return rb_big_modulo(x, y);
}
return num_modulo(x, y);
}