Is it possible to break from a Groovy .each{Closure}, or should I be using a classic loop instead?
break
.each{Closure}
(1..10).each{
if (it < 5)
println it
else
return false