Say you have this array:
arr = w|one two three|
How can I iterate over it by having two consecutive elements as block arguments like this:
1st cycle: |nil, 'one'|
2nd cycle: |'one', 'two'|
3rd cycle: |'two', 'three'|
Sofar I came only with this:
arr.each_index { |i| [i - 1 < 0 ? nil: arr[i - 1], arr[i]] }
Any better solutions? Is there something like each(n)
?
You can add nil
as the first element of your arr
and use Enumerable#each_cons
method:
arr.unshift(nil).each_cons(2).map { |first, second| [first, second] }
# => [[nil, "one"], ["one", "two"], ["two", "three"]]
(I'm using map
here to show what exactly is returned on each iteration)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With