|
Groovy JDK |
Method Summary | |
---|---|
long
|
abs()
Get the absolute value |
void
|
downto(Number to, Closure closure)
Iterates from this number down to the given number, inclusive, decrementing by one each time. |
void
|
upto(Number to, Closure closure)
Iterates from this number up to the given number, inclusive, incrementing by one each time. |
Method Detail |
---|
public long abs()
public void downto(Number to, Closure closure)
to
- the end number.closure
- the code to execute for each number.public void upto(Number to, Closure closure)
to
- the end number.closure
- the code to execute for each number.
|
Groovy JDK |