summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/numeric.c b/numeric.c
index 95444b3b63..f291e3a948 100644
--- a/numeric.c
+++ b/numeric.c
@@ -3536,11 +3536,11 @@ rb_int_modulo(VALUE x, VALUE y)
}
/*
- * Document-method: Fixnum#divmod
+ * Document-method: Integer#divmod
* call-seq:
- * fix.divmod(numeric) -> array
+ * integer.divmod(numeric) -> array
*
- * See Numeric#divmod.
+ * See <code>Numeric#divmod</code>.
*/
static VALUE
fix_divmod(VALUE x, VALUE y)
@@ -3571,6 +3571,18 @@ fix_divmod(VALUE x, VALUE y)
}
}
+static VALUE
+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;
+}
+
/*
* Document-method: Integer#**
* call-seq:
@@ -4830,7 +4842,7 @@ Init_Numeric(void)
rb_define_method(rb_cFixnum, "div", fix_idiv, 1);
rb_define_method(rb_cFixnum, "%", fix_mod, 1);
rb_define_method(rb_cFixnum, "modulo", fix_mod, 1);
- rb_define_method(rb_cFixnum, "divmod", fix_divmod, 1);
+ rb_define_method(rb_cInteger, "divmod", int_divmod, 1);
rb_define_method(rb_cInteger, "fdiv", int_fdiv, 1);
rb_define_method(rb_cInteger, "**", rb_int_pow, 1);