public myFunc(this named Int year = 0, this named Int month = 1, this Int dayOfMonth = 1) {}
Where when calling myFunc and passing a value for year and month, you would have to explicitly name them. Whereas this is currently possible: myFunc(2016, 12, 11), you would be required to explicitly specify the argument names: myFunc(year: 2016, month: 12, 11)
e.g.
Where when calling myFunc and passing a value for year and month, you would have to explicitly name them. Whereas this is currently possible:
myFunc(2016, 12, 11)
, you would be required to explicitly specify the argument names:myFunc(year: 2016, month: 12, 11)