struct.reduce()
Iterates over every entry of the given struct and calls the closure with every key/value.
This function will reduce the struct to a single value and will return this value.
struct.reduce( closure=function, initialValue=object )
Returns: any
Examples
Member Function
animals = {
cow: {noise: "moo", size: "large"},
pig: {noise: "oink", size: "medium"},
cat: { noise: "meow", size: "small"}
};
dump(label: "All animals", var: animals);
animalInfo = animals.reduce(function(result, key, value) {
return arguments.result & "<li>" & arguments.key & "<ul><li>Noise: " & arguments.value.noise & "</li><li>Size: " & arguments.value.size & "</li></ul></li>";
}, "<ul>") & "</ul>";
// Show result
echo(animalInfo);