Flowdock
method

from

Importance_1
v2.0.3 - Show latest stable - 0 notes - Class: ActiveSupport::CoreExtensions::Array::Access
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 )
  %w( a b c d ).from(2)  # => %w( c d )
  %w( a b c d ).from(10) # => nil
Show source
Register or log in to add new notes.