ListReduce()
Iterates over every entry of the given list and calls the closure with every element.
This function will reduce the list to a single value and will return the value.
ListReduce( list=string, closure=function, initialValue=object, delimiter=string, includeEmptyFields=boolean, multiCharacterDelimiter=boolean );
Returns: any
| Argument | Description | Default |
|---|---|---|
|
list
string,
required
|
edit
string list to iterate Alias: string |
|
|
closure
function,
required
|
edit
function/closure that implements the following constructor
Alias: function, callback, udf |
|
|
initialValue
object,
optional
|
edit
initial value passed as part of the first closure call Alias: initial, initalValue |
|
|
delimiter
string,
optional
|
edit
delimiter used to separate the string list |
, |
|
includeEmptyFields
boolean,
optional
|
edit
include empty fields or not |
false |
|
multiCharacterDelimiter
boolean,
optional
|
edit
specifying whether the delimiters parameter specifies a multi-character delimiter. If this parameter is true, the delimiters parameter must specify a single delimiter consisting of multiple characters. This parameter enables the ListToArray function to convert a list such as the following to an array of color names: red:|orange:|yellow:|green:|blue:|indigo:|violet. |
true |
Examples
editnumbers = "1,3,5,7";
reducedVal = listReduce(numbers, function(previousValue, value)
{
return previousValue + value;
},0);
writeOutput("The sum of the digits #numbers# is #reducedVal#");
See also
- Collections
- Lists
- Threads
- string.listReduce()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)