Sha256: c82f5c309a976b1b993204253b12079ea79b95147a7dc80be7d6cedcc8cb6244

Contents?: true

Size: 933 Bytes

Versions: 55

Compression:

Stored size: 933 Bytes

Contents

class Array
  # Returns the tail of the array from +position+.
  #
  #   %w( a b c d ).from(0)  # => %w( a b c d )
  #   %w( a b c d ).from(2)  # => %w( c d )
  #   %w( a b c d ).from(10) # => %w()
  #   %w().from(0)           # => %w()
  def from(position)
    self[position, length] || []
  end

  # Returns the beginning of the array up to +position+.
  #
  #   %w( a b c d ).to(0)  # => %w( a )
  #   %w( a b c d ).to(2)  # => %w( a b c )
  #   %w( a b c d ).to(10) # => %w( a b c d )
  #   %w().to(0)           # => %w()
  def to(position)
    self[0..position]
  end

  # Equal to <tt>self[1]</tt>.
  def second
    self[1]
  end

  # Equal to <tt>self[2]</tt>.
  def third
    self[2]
  end

  # Equal to <tt>self[3]</tt>.
  def fourth
    self[3]
  end

  # Equal to <tt>self[4]</tt>.
  def fifth
    self[4]
  end

  # Equal to <tt>self[41]</tt>. Also known as accessing "the reddit".
  def forty_two
    self[41]
  end
end

Version data entries

55 entries across 55 versions & 2 rubygems

Version Path
activesupport-3.1.12 lib/active_support/core_ext/array/access.rb
activesupport-3.1.11 lib/active_support/core_ext/array/access.rb
activesupport-3.1.10 lib/active_support/core_ext/array/access.rb
activesupport-3.1.9 lib/active_support/core_ext/array/access.rb
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.7.2 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.7.1 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.7.0 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.6.7 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.6.6 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.6.5 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.6.4 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
activesupport-3.1.8 lib/active_support/core_ext/array/access.rb
dirty_history-0.6.3 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
activesupport-3.1.7 lib/active_support/core_ext/array/access.rb
dirty_history-0.6.2 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.6.1 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
dirty_history-0.6.0 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb
activesupport-3.1.6 lib/active_support/core_ext/array/access.rb
dirty_history-0.5.4 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb