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

Argument Description
closure
function, required

function/closure that implements the following constructor

function(result, key, value, st) { return result; }

Alias: function, callback, udf

initialValue
object, optional

initial value passed as part of the first closure call

Alias: initial, initalValue

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);

See also