aboutsummaryrefslogtreecommitdiffstats
path: root/range.c
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2020-07-13 10:09:38 -0700
committerGitHub <noreply@github.com>2020-07-13 10:09:38 -0700
commit8900a25581822759daca528d46a75e0b743fc22e (patch)
tree13625f02dacc53246ea8a2b15810520e2b4746f2 /range.c
parenta1bcfbe30c0bc8dcd4f575e6f74cb92b4453f1ba (diff)
downloadruby-8900a25581822759daca528d46a75e0b743fc22e.tar.gz
Fix Range#{max,minmax} for range with integer beginning and non-integer end
Previously, for inclusive ranges, the max would show up as the end of the range, even though the end was not an integer and would not be the maximum value. For exclusive ranges, max/minmax would previously raise a TypeError, even though it is possible to get the correct maximum. This change to max/minmax also uncovered a similar error in cover?, which calls max in certain cases, so adjust the code there so that cover? still works as expected. Fixes [Bug #17017]
Diffstat (limited to 'range.c')
-rw-r--r--range.c21
1 files changed, 18 insertions, 3 deletions
diff --git a/range.c b/range.c
index 59cae0ae34..93cf126f51 100644
--- a/range.c
+++ b/range.c
@@ -1234,6 +1234,13 @@ range_max(int argc, VALUE *argv, VALUE range)
if (c > 0)
return Qnil;
if (EXCL(range)) {
+ if (RB_INTEGER_TYPE_P(b) && !RB_INTEGER_TYPE_P(e)) {
+ VALUE end = e;
+ e = rb_funcall(e, rb_intern("floor"), 0);
+ if (!RTEST(rb_funcall(e, rb_intern("=="), 1, end))) {
+ return e;
+ }
+ }
if (!RB_INTEGER_TYPE_P(e)) {
rb_raise(rb_eTypeError, "cannot exclude non Integer end value");
}
@@ -1246,6 +1253,9 @@ range_max(int argc, VALUE *argv, VALUE range)
}
return rb_funcall(e, '-', 1, INT2FIX(1));
}
+ if (RB_INTEGER_TYPE_P(b) && !RB_INTEGER_TYPE_P(e)) {
+ e = rb_funcall(e, rb_intern("floor"), 0);
+ }
return e;
}
}
@@ -1593,9 +1603,14 @@ r_cover_range_p(VALUE range, VALUE beg, VALUE end, VALUE val)
else if (cmp_end >= 0) {
return TRUE;
}
-
- val_max = rb_rescue2(r_call_max, val, 0, Qnil, rb_eTypeError, (VALUE)0);
- if (val_max == Qnil) return FALSE;
+ if (RB_INTEGER_TYPE_P(val_beg) && RB_INTEGER_TYPE_P(beg) &&
+ RB_INTEGER_TYPE_P(val_end) != RB_INTEGER_TYPE_P(end)) {
+ val_max = val_end;
+ }
+ else {
+ val_max = rb_rescue2(r_call_max, val, 0, Qnil, rb_eTypeError, (VALUE)0);
+ if (val_max == Qnil) return FALSE;
+ }
return r_less(end, val_max) >= 0;
}