I'm trying to reverse Enumerable (like Array) without using reverse
method, but using reverse_each
iterator.
I hoped, that following code is enough:
p [1,2,3].reverse_each {|v| v }
however the block doesn't return array in reversed orded. Of course I could write
[1,2,3].reverse_each {|v| p v }
but I'd like to collect items in the first way. What is the source if this behaviour and how should I write my expression to fulfill requirement?