from(position)
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) # => nil
# File activesupport/lib/active_support/core_ext/array/access.rb, line 11 def from(position) self[position..-1] end