Description
Iterates over every entry of the List and calls the closure function to work on the item of the list. The returned value will be set at the same index in a new list and the new list will be returned.
Returns
List
Description
Iterates over every entry of the List and calls the closure function to work on the item of the list. The returned value will be set at the same index in a new list and the new list will be returned.
List
ListMap(list, function(item [,index, list]) [,delimiter, includeEmptyFields)
History
ColdFusion 11: Added this function.
Attribute |
Req/Opt |
Default |
Description |
---|---|---|---|
list | Required | The input list. | |
function | Required | Closure or a function reference that will be called for each of the iteration. The arguments passed to the callback are
|
|
initialValue | Optional | Initial value which will be used for the reduce operation. The type is any. | |
delimter | Optional | comma (,) | The list delimiter The type is string.. |
includeEmptyFields | Optional | false | Include empty values. The type is boolean. |