Flowdock
method

include_with_range?

Importance_1
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Range

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.2.9) is shown here.

include_with_range?(value) public

Extends the default Range#include? to support range comparisons.

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

The native Range#include? behavior is untouched.

('a'..'f').include?('c') # => true
(5..9).include?(11) # => false
Show source
Register or log in to add new notes.