aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 10:26:17 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 10:26:17 +0000
commita0501dd5ea64289d0e7c6100b1ce609395c6483c (patch)
treea7a1697c16410bdceee64afb3e00bfefde8a3f1f /numeric.c
parentf7b48838f706ed08f4d5b29252e715ee235307db (diff)
downloadruby-a0501dd5ea64289d0e7c6100b1ce609395c6483c.tar.gz
Define Integer#>= instead of Bignum#>=.
* numeric.c (int_ge): Define Integer#>=. * bignum.c (rb_big_ge): Don't define Bignum#>=. Renamed from big_ge. * internal.h (rb_big_ge): Declared. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/numeric.c b/numeric.c
index 96bbfcc539..9fe4379552 100644
--- a/numeric.c
+++ b/numeric.c
@@ -3852,11 +3852,12 @@ fix_gt(VALUE x, VALUE y)
}
/*
+ * Document-method: Integer#>=
* Document-method: Fixnum#>=
* call-seq:
- * fix >= real -> true or false
+ * int >= real -> true or false
*
- * Returns +true+ if the value of +fix+ is greater than or equal to that of
+ * Returns +true+ if the value of +int+ is greater than or equal to that of
* +real+.
*/
@@ -3879,6 +3880,18 @@ fix_ge(VALUE x, VALUE y)
}
}
+static VALUE
+int_ge(VALUE x, VALUE y)
+{
+ if (FIXNUM_P(x)) {
+ return fix_ge(x, y);
+ }
+ else if (RB_TYPE_P(x, T_BIGNUM)) {
+ return rb_big_ge(x, y);
+ }
+ return Qnil;
+}
+
/*
* Document-method: Integer#<
* Document-method: Fixnum#<
@@ -4911,6 +4924,7 @@ Init_Numeric(void)
rb_define_method(rb_cInteger, "abs", int_abs, 0);
rb_define_method(rb_cInteger, "magnitude", int_abs, 0);
+ rb_define_method(rb_cInteger, ">=", int_ge, 1);
rb_define_method(rb_cInteger, "<", int_lt, 1);
rb_define_method(rb_cInteger, "<=", int_le, 1);