I'm trying to write a code where the enumeration sequence is rewinded to the beginning.
I think rewind
is appropriate for this application, but I'm not sure how to implement it under an each
iterator passing to a block? In the Ruby-Docs example, next
is used to move the internal position by one at a time. With a block, it would move autonomously.
There's not many good examples online for this specifically. My workaround at the moment is to nest an iterator under a loop and using break
under the iterator. When the iterator breaks, the loop resets the enumeration sequence.
Is there a better way—as I'm sure there is—of doing this?
Use the
Enumerator#rewind
method from Ruby core class libarary.