APIdock / Ruby
/
method

divmod

ruby latest stable - Class: Integer
divmod(p1)
public
VALUE
rb_int_divmod(VALUE x, VALUE y)
{
 if (FIXNUM_P(x)) {
 return fix_divmod(x, y);
 }
 else if (RB_TYPE_P(x, T_BIGNUM)) {
 return rb_big_divmod(x, y);
 }
 return Qnil;
}

AltStyle によって変換されたページ (->オリジナル) /