is there a way to 'break' out of a groovy closure.
maybe something like this:
[1, 2, 3].each {
println(it)
if (it == 2)
break
}
|
is there a way to 'break' out of a groovy closure. maybe something like this:
|
|||
|
|
|
You can throw an exception:
Use could also use "findAll" or "grep" to filter out your list and then use "each".
|
|||
|
|
|
Take a look at Best pattern for simulating continue in groovy closure for an extensive discussion. |
|||
|
|
|
I often forget that Groovy implements an "any" method. [1, 2, 3].any
{ |
|||
|
|
|
Edited.
Think of the closure like a little method. How would you break out of a method? You return. Return will break out of the closure. You cannot break out of the iteration just as you couldn't break out of the following code.
This almost exactly what Groovy is doing when you call the each METHOD and pass it a closure. Something you might want to consider for your particular case: the find or findAll methods.
I hope this helps you understand what is going on. |
|||||||||||||
|
|
This is in support of John Wagenleiter's answer. Tigerizzy's answer is plain wrong. It can easily be disproved practically by executing his first code sample, or theoretically by reading Groovy documentation. A return returns a value (or null without an argument) from the current iteration, but does not stop the iteration. In a closure it behaves rather like continue. You won't be able to use inject without understanding this. There is no way to 'break the loop' except by throwing an exception. Using exceptions for this purpose is considered smelly. So, just as Wagenleiter suggests, the best practice is to filter out the elements you want to iterate over before launching each or one of its cousins. |
|||
|
|