method

include_with_range?

Importance_1
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: ActiveSupport::CoreExtensions::Range::IncludeRange

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) 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.