In C and many other languages, there is a continue keyword that, when used inside of a loop, jumps to the next iteration of the loop. Is there any equivalent of this continue keyword in Ruby?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Yes, it's called
This outputs the following:
|
|||||||
|
|
also, look at |
|||
|
|
|
Ruby has two other loop/iteration control keywords: |
||||
|
|
|
Inside for-loops and iterator methods like However what it actually does is just to return from the current block. So you can use it with any method that takes a block - even if it has nothing to do with iteration. |
|||
|
|
|
A slightly more Ruby way of writing that example:
Outputs:
|
|||
|
|