Class: Range

Inherits:
Object show all
Includes:
ActiveSupport::CompareWithRange, ActiveSupport::EachTimeWithZone, ActiveSupport::RangeWithFormat
Defined in:
activesupport/lib/active_support/core_ext/enumerable.rb,
activesupport/lib/active_support/core_ext/object/json.rb,
activesupport/lib/active_support/core_ext/range/overlap.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_fs

Methods included from ActiveSupport::CompareWithRange

#===, #include?

Instance Method Details

#as_json(options = nil) ⇒ Object

:nodoc:



160
161
162
# File 'activesupport/lib/active_support/core_ext/object/json.rb', line 160

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

#overlap?(other) ⇒ Boolean Also known as: overlaps?

Returns:

  • (Boolean)

Raises:

  • (TypeError)


8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'activesupport/lib/active_support/core_ext/range/overlap.rb', line 8

def overlap?(other)
  raise TypeError unless other.is_a? Range

  self_begin = self.begin
  other_end = other.end
  other_excl = other.exclude_end?

  return false if _empty_range?(self_begin, other_end, other_excl)

  other_begin = other.begin
  self_end = self.end
  self_excl = self.exclude_end?

  return false if _empty_range?(other_begin, self_end, self_excl)
  return true if self_begin == other_begin

  return false if _empty_range?(self_begin, self_end, self_excl)
  return false if _empty_range?(other_begin, other_end, other_excl)

  true
end

#sum(initial_value = 0) ⇒ Object

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



236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'activesupport/lib/active_support/core_ext/enumerable.rb', line 236

def sum(initial_value = 0)
  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 = initial_value || 0
      sum + (actual_last - first + 1) * (actual_last + first) / 2
    else
      initial_value || 0
    end
  end
end