Flowdock
method

to

Importance_1
v2.2.1 - Show latest stable - 0 notes - Class: ActiveSupport::CoreExtensions::Array::Access
to(position) public

Returns the beginning of the array up to position.

  %w( a b c d ).to(0)  # => %w( a )
  %w( a b c d ).to(2)  # => %w( a b c )
  %w( a b c d ).to(10) # => %w( a b c d )
  %w().to(0)           # => %w()
Show source
Register or log in to add new notes.