to(position)
Instance Public methods
Returns the beginning of the array up to position
.
1 2 3 4 | %w( a b c d ).to( 0 ) # => ["a"] %w( a b c d ).to( 2 ) # => ["a", "b", "c"] %w( a b c d ).to( 10 ) # => ["a", "b", "c", "d"] %w().to( 0 ) # => [] |
Please login to continue.