Tagged Questions
2
votes
5answers
378 views
Infinite yields from an iterator
I'm trying to learn some ruby.
Imagine I'm looping and doing a long running process, and in this process I want to get a spinner for as long as necessary.
So I could do:
a=['|','/','-','\\']
aNow=0
...
1
vote
6answers
457 views
How can I make an iterator that never ends?
I was just wondering what the easiest way to iterate over a set indefinitely, i.e. when it reaches the end it next(); calls the first object. I'm assuming that this is not an already predefined ...