Class: Range

Inherits:
Object show all
Includes:
ActiveSupport::EachTimeWithZone, ActiveSupport::IncludeTimeWithZone, ActiveSupport::IncludeWithRange, ActiveSupport::RangeWithFormat
Defined in:
lib/active_support/core_ext/enumerable.rb,
lib/active_support/core_ext/object/json.rb,
lib/active_support/core_ext/range/overlaps.rb

Overview

:nodoc:

Constant Summary

Constants included from ActiveSupport::RangeWithFormat

ActiveSupport::RangeWithFormat::RANGE_FORMATS

Instance Method Summary collapse

Methods included from ActiveSupport::EachTimeWithZone

#each, #step

Methods included from ActiveSupport::RangeWithFormat

#to_s

Methods included from ActiveSupport::IncludeWithRange

#include?

Methods included from ActiveSupport::IncludeTimeWithZone

#include?

Instance Method Details

#as_json(options = nil) ⇒ Object

:nodoc:



145
146
147
# File 'lib/active_support/core_ext/object/json.rb', line 145

def as_json(options = nil) #:nodoc:
  to_s
end

#overlaps?(other) ⇒ Boolean

Compare two ranges and see if they overlap each other

(1..5).overlaps?(4..6) # => true
(1..5).overlaps?(7..9) # => false

Returns:

  • (Boolean)


7
8
9
# File 'lib/active_support/core_ext/range/overlaps.rb', line 7

def overlaps?(other)
  cover?(other.first) || other.cover?(first)
end

#sum(identity = nil) ⇒ Object

Optimize range sum to use arithmetic progression if a block is not given and we have a range of numeric values.



121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/active_support/core_ext/enumerable.rb', line 121

def sum(identity = nil)
  if block_given? || !(first.is_a?(Integer) && last.is_a?(Integer))
    super
  else
    actual_last = exclude_end? ? (last - 1) : last
    if actual_last >= first
      sum = identity || 0
      sum + (actual_last - first + 1) * (actual_last + first) / 2
    else
      identity || 0
    end
  end
end