There's also Closure composition
def plus2 = { it + 2 }
def times3 = { it * 3 }
def composed1 = plus2 << times3
assert composed1(3) == 11
And you can use the Method Reference operator & to get a reference to a class method, which you can then use with currying or composition.
ie:
def parseIntRef = Integer.&parseInt
def binaryParse = parseIntRef.rcurry( 2 )
def hexParse = parseIntRef.rcurry( 16 )
assert binaryParse( '110' ) == 6
assert hexParse( '0A' ) == 10
There are 3 forms of curry for closures;
- The basic
curry method which starts currying the parameters of a Closure from the left most parameter
- Then there is the
rcurry method, which starts currying the parameters from the right
- And finally, there is
ncurry which starts at the index specified by you.
All 3 of those curry methods are well described in the documentation if you follow the links :-)