aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-13 06:50:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-13 06:50:24 +0000
commita1542d33ca30cdecb741be526d043be6bba01d76 (patch)
tree6372754df0ea6c0d26636b11636b981372913276
parent15558a8f573ce07ead22796aef9e531604bb4733 (diff)
downloadruby-a1542d33ca30cdecb741be526d043be6bba01d76.tar.gz
numeric.c: int_ceil
* numeric.c (int_ceil): add an optional parameter, digits, as well as Integer#round. [Feature #12245] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54562 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--numeric.c58
-rw-r--r--test/ruby/test_integer.rb25
3 files changed, 87 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 08a93881c2..e2a89940e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,10 @@
-Wed Apr 13 15:47:53 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Wed Apr 13 15:50:22 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * numeric.c (int_ceil): add an optional parameter, digits, as
+ well as Integer#round. [Feature #12245]
* numeric.c (int_floor): add an optional parameter, digits, as
- well as Integer#round.
+ well as Integer#round. [Feature #12245]
Wed Apr 13 14:47:47 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
diff --git a/numeric.c b/numeric.c
index e12c905191..53939dce9c 100644
--- a/numeric.c
+++ b/numeric.c
@@ -111,6 +111,7 @@ static VALUE int_pow(long x, unsigned long y);
static VALUE int_cmp(VALUE x, VALUE y);
static int int_round_zero_p(VALUE num, int ndigits);
VALUE rb_int_floor(VALUE num, int ndigits);
+VALUE rb_int_ceil(VALUE num, int ndigits);
static VALUE flo_truncate(VALUE num);
static int float_invariant_round(double number, int ndigits, VALUE *num);
@@ -1844,6 +1845,30 @@ rb_int_floor(VALUE num, int ndigits)
return rb_int_minus(num, rb_int_modulo(num, f));
}
+VALUE
+rb_int_ceil(VALUE num, int ndigits)
+{
+ VALUE f;
+
+ if (int_round_zero_p(num, ndigits))
+ return INT2FIX(0);
+ f = int_pow(10, -ndigits);
+ if (FIXNUM_P(num) && FIXNUM_P(f)) {
+ SIGNED_VALUE x = FIX2LONG(num), y = FIX2LONG(f);
+ int neg = x < 0;
+ if (neg) x = -x;
+ else x += y - 1;
+ x = (x / y) * y;
+ if (neg) x = -x;
+ return LONG2NUM(x);
+ }
+ if (RB_TYPE_P(f, T_FLOAT)) {
+ /* then int_pow overflow */
+ return INT2FIX(0);
+ }
+ return rb_int_plus(num, rb_int_minus(f, rb_int_modulo(num, f)));
+}
+
/*
* call-seq:
* float.round([ndigits]) -> integer or float
@@ -4225,6 +4250,37 @@ int_floor(int argc, VALUE* argv, VALUE num)
}
/*
+ * call-seq:
+ * int.ceil([ndigits]) -> integer or float
+ *
+ * Returns the smallest number than or equal to +int+ in decimal
+ * digits (default 0 digits).
+ *
+ * Precision may be negative. Returns a floating point number when +ndigits+
+ * is positive, +self+ for zero, and ceil up for negative.
+ *
+ * 1.ceil #=> 1
+ * 1.ceil(2) #=> 1.0
+ * 15.ceil(-1) #=> 20
+ */
+
+static VALUE
+int_ceil(int argc, VALUE* argv, VALUE num)
+{
+ int ndigits;
+
+ if (!rb_check_arity(argc, 0, 1)) return num;
+ ndigits = NUM2INT(argv[0]);
+ if (ndigits > 0) {
+ return rb_Float(num);
+ }
+ if (ndigits == 0) {
+ return num;
+ }
+ return rb_int_ceil(num, ndigits);
+}
+
+/*
* Document-class: ZeroDivisionError
*
* Raised when attempting to divide an integer by 0.
@@ -4395,7 +4451,7 @@ Init_Numeric(void)
rb_define_method(rb_cInteger, "to_int", int_to_i, 0);
rb_define_method(rb_cInteger, "to_f", int_to_f, 0);
rb_define_method(rb_cInteger, "floor", int_floor, -1);
- rb_define_method(rb_cInteger, "ceil", int_to_i, 0);
+ rb_define_method(rb_cInteger, "ceil", int_ceil, -1);
rb_define_method(rb_cInteger, "truncate", int_to_i, 0);
rb_define_method(rb_cInteger, "round", int_round, -1);
rb_define_method(rb_cInteger, "<=>", int_cmp, 1);
diff --git a/test/ruby/test_integer.rb b/test/ruby/test_integer.rb
index ab7d0279ac..53268ea773 100644
--- a/test/ruby/test_integer.rb
+++ b/test/ruby/test_integer.rb
@@ -224,6 +224,31 @@ class TestInteger < Test::Unit::TestCase
assert_int_equal(-1111_1111_1111_1111_1111_1111_1111_1120, (-1111_1111_1111_1111_1111_1111_1111_1111).floor(-1))
end
+ def test_ceil
+ assert_int_equal(11111, 11111.ceil)
+ assert_int_equal(11111, 11111.ceil(0))
+
+ assert_float_equal(11111.0, 11111.ceil(1))
+ assert_float_equal(11111.0, 11111.ceil(2))
+
+ assert_int_equal(11110, 11110.ceil(-1))
+ assert_int_equal(11120, 11119.ceil(-1))
+ assert_int_equal(11200, 11101.ceil(-2))
+ assert_int_equal(11200, 11200.ceil(-2))
+ assert_int_equal(100000, 11111.ceil(-5))
+ assert_int_equal(300, 299.ceil(-2))
+ assert_int_equal(300, 300.ceil(-2))
+ assert_int_equal(-200, -299.ceil(-2))
+ assert_int_equal(-300, -300.ceil(-2))
+ assert_int_equal(+30 * 10**70, (+25 * 10**70).ceil(-71))
+ assert_int_equal(-20 * 10**70, (-25 * 10**70).ceil(-71))
+ assert_int_equal(+30 * 10**70, (+25 * 10**70 - 1).ceil(-71))
+ assert_int_equal(-20 * 10**70, (-25 * 10**70 + 1).ceil(-71))
+
+ assert_int_equal(1111_1111_1111_1111_1111_1111_1111_1120, 1111_1111_1111_1111_1111_1111_1111_1111.ceil(-1))
+ assert_int_equal(-1111_1111_1111_1111_1111_1111_1111_1110, (-1111_1111_1111_1111_1111_1111_1111_1111).ceil(-1))
+ end
+
def test_bitwise_and_with_integer_mimic_object
def (obj = Object.new).to_int
10