from(position)
public
Returns the remaining of the array from the
position.
Examples:
%w( a b c d ).from(0)
%w( a b c d ).from(2)
%w( a b c d ).from(10)
# File activesupport/lib/active_support/core_ext/array/access.rb, line 12
def from(position)
self[position..-1]
end