Is it possible to expand a map into a list of method arguments
In Python, this is possible, for example. Extension of tuples in arguments
I have def map = ['a':1, 'b':2] and the method def m(a,b)
I want to write smt as m(*map)
parameter-passing arguments groovy
Queequeg
source share