Flowdock
method

===

Importance_1
v6.1.7.7 - Show latest stable - 0 notes - Class: CompareWithRange
===(value) public

Extends the default Range#=== to support range comparisons.

(1..5) === (1..5)  # => true
(1..5) === (2..3)  # => true
(1..5) === (1...6) # => true
(1..5) === (2..6)  # => false

The native Range#=== behavior is untouched.

('a'..'f') === ('c') # => true
(5..9) === (11) # => false

The given range must be fully bounded, with both start and end.

Show source
Register or log in to add new notes.