From 0d076fe4b3594f8bf4a229aa49c63563df28c899 Mon Sep 17 00:00:00 2001 From: mrkn Date: Fri, 18 Mar 2016 15:02:45 +0000 Subject: * bignum.c (rb_big_to_f, Bignum#to_f): removed them because they are unified with int_to_f and Integer#to_f. * numeric.c (int_to_f): treat Bignum values directly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54181 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index 67f8179271..2c241d1c56 100644 --- a/bignum.c +++ b/bignum.c @@ -5191,21 +5191,6 @@ rb_big2dbl(VALUE x) return d; } -/* - * call-seq: - * big.to_f -> float - * - * Converts big to a Float. If big doesn't - * fit in a Float, the result is infinity. - * - */ - -static VALUE -rb_big_to_f(VALUE x) -{ - return DBL2NUM(rb_big2dbl(x)); -} - VALUE rb_integer_float_cmp(VALUE x, VALUE y) { @@ -7033,7 +7018,6 @@ Init_Bignum(void) rb_define_method(rb_cBignum, "<", big_lt, 1); rb_define_method(rb_cBignum, "<=", big_le, 1); rb_define_method(rb_cBignum, "===", rb_big_eq, 1); - rb_define_method(rb_cBignum, "to_f", rb_big_to_f, 0); rb_define_method(rb_cBignum, "abs", rb_big_abs, 0); rb_define_method(rb_cBignum, "magnitude", rb_big_abs, 0); rb_define_method(rb_cBignum, "size", rb_big_size, 0); -- cgit v1.2.3