Sha256: 1cea42b21f0849d69a140f12224c56d9f173907846febc8fcd1d5dcc26eda0b3

Contents?: true

Size: 1.9 KB

Versions: 35

Compression:

Stored size: 1.9 KB

Contents

# frozen_string_literal: true

module ActiveSupport
  module CompareWithRange #:nodoc:
    # Extends the default Range#=== to support range comparisons.
    #  (1..5) === (1..5) # => true
    #  (1..5) === (2..3) # => true
    #  (1..5) === (2..6) # => false
    #
    # The native Range#=== behavior is untouched.
    #  ('a'..'f') === ('c') # => true
    #  (5..9) === (11) # => false
    def ===(value)
      if value.is_a?(::Range)
        # 1...10 includes 1..9 but it does not include 1..10.
        operator = exclude_end? && !value.exclude_end? ? :< : :<=
        super(value.first) && value.last.send(operator, last)
      else
        super
      end
    end

    # 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
    def include?(value)
      if value.is_a?(::Range)
        # 1...10 includes 1..9 but it does not include 1..10.
        operator = exclude_end? && !value.exclude_end? ? :< : :<=
        super(value.first) && value.last.send(operator, last)
      else
        super
      end
    end

    # Extends the default Range#cover? to support range comparisons.
    #  (1..5).cover?(1..5) # => true
    #  (1..5).cover?(2..3) # => true
    #  (1..5).cover?(2..6) # => false
    #
    # The native Range#cover? behavior is untouched.
    #  ('a'..'f').cover?('c') # => true
    #  (5..9).cover?(11) # => false
    def cover?(value)
      if value.is_a?(::Range)
        # 1...10 covers 1..9 but it does not cover 1..10.
        operator = exclude_end? && !value.exclude_end? ? :< : :<=
        super(value.first) && value.last.send(operator, last)
      else
        super
      end
    end
  end
end

Range.prepend(ActiveSupport::CompareWithRange)

Version data entries

35 entries across 35 versions & 5 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.8 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.7.1 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.7 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.6.3 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.6.2 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.6.1 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.6 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.4.6 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.5 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.4.5 lib/active_support/core_ext/range/compare_range.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.4.4 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.4.3 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.4.2 lib/active_support/core_ext/range/compare_range.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.4.1 lib/active_support/core_ext/range/compare_range.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.4 lib/active_support/core_ext/range/compare_range.rb
activesupport-5.2.4.rc1 lib/active_support/core_ext/range/compare_range.rb