Class: Range
- 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
-
#as_json(options = nil) ⇒ Object
:nodoc:.
-
#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.
-
#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.
Methods included from ActiveSupport::EachTimeWithZone
Methods included from ActiveSupport::RangeWithFormat
Methods included from ActiveSupport::IncludeWithRange
Methods included from ActiveSupport::IncludeTimeWithZone
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( = 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
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 |