Bug #18155
closed(nil..nil).cover?(x) is true for all x since beginless ranges were introduced
Description
Description¶
The introduction of beginless ranges in #14799 changed the behaviour of Range#cover?
when both the beginning and the end of a Range
are nil
. Previously such a range would cover no values; now it covers all values:
irb-2.6.6> (nil..nil).cover?("23 dogs")
=> false
irb-2.7.0> (nil..nil).cover?("23 dogs")
=> true
This change was noted at the time, but it was believed that the call would have previously raised an error instead of returning false
. I've not exhaustively checked, but the old behaviour goes back to at least ruby 2.2.
Discussion¶
I'm not sure that either of these results are "correct", since I'm not sure that the concept of a range with no beginning or end is meaningful. Without either parameter, it seems impossible to infer the values it ranges over, since we have no type information available.
However, I did find both the current result and the change in behaviour quite surprising, so I've opened this issue.
Some options I considered:
- Do nothing: a beginless-and-endless range is unbounded in both value and type, so covers all values of all types
- Reinstate the old behaviour: a beginless-and-endless range has no type, so covers no values
- Raise an error: a beginless-and-endless range is meaningless, so constructing one should raise an error
My personal preference is option 3, but I can clearly see that it represents the most effort. I'd welcome people's thoughts; if option 1 is preferred, I'd be happy to contribute a documentation patch to make the new behaviour clear.
Files
Added by jeremyevans (Jeremy Evans) almost 3 years ago
Added by nagachika (Tomoyuki Chikanaga) about 2 years ago
merge revision(s) c5475f42694eff35465c3332e0182c0611ca5918: [Backport #18748]
Fix Range#cover? returning true for beginless ranges of different
types
Previously `(2..).cover?("2"..)` was false, but
`(..2).cover?(.."2")` was true. This changes it so both are false,
treating beginless ranges the same as endless ranges in regards to
type checks.
This also adds documentation to #cover? to describe behavior with
beginless and endless ranges, testing each documentation example,
which is how this bug was found.
Fixes [Bug #18155]
---
range.c | 54 ++++++++++++++++++++++++++++++++++++++++++++++++-
test/ruby/test_range.rb | 29 ++++++++++++++++++++++++++
2 files changed, 82 insertions(+), 1 deletion(-)
Fix Range#cover? returning true for beginless ranges of different types
Previously
(2..).cover?("2"..)
was false, but(..2).cover?(.."2")
was true. This changes it so both are false,treating beginless ranges the same as endless ranges in regards to
type checks.
This also adds documentation to #cover? to describe behavior with
beginless and endless ranges, testing each documentation example,
which is how this bug was found.
Fixes [Bug #18155]