Details
Details
Assignee
Unassigned
UnassignedReporter
Imported User 30
Imported User 30Labels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 30 January 2015 at 20:39
Updated 21 January 2023 at 15:58
Lucee supports named arguments in built-in function calls but does not support argumentCollection:
```
x = abs( number = -42 ); // supported
x = abs( argumentCollection =
{ number = -42 }
); // not supported
```
This would be useful for dynamically creating argument lists for built-in functions that take optional arguments.
Note: neither form is supported by ACF.