Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version. Compare with Current ·  View Page History

Groovy supports the usual while {...} loops like Java.

for loop

The for loop in Groovy is much simpler and works with any kind of array, collection, Map etc.
Note: you can also use the standard Java / C for loop if you wish.

closures

In addition, you can use closures in place of most for loops, using each() and eachWithIndex():

Labels
  • None