Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2.3.8) is shown here.
from(position)
public
Returns the tail of the array from
position.
%w( a b c d ).from(0)
%w( a b c d ).from(2)
%w( a b c d ).from(10)
%w().from(0)
# File activesupport/lib/active_support/core_ext/array/access.rb, line 12
def from(position)
self[position..-1]
end