| Module | ActiveSupport::CoreExtensions::Array::Access |
| In: |
lib/active_support/core_ext/array/access.rb
|
Returns the remaining of the array from the position.
Examples:
%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