Each()

call the given UDF/Closure with every entry (key/value) in the given collection.

Status:

deprecated

Each( collection=object, closure=function, parallel=boolean, maxThreads=number );

Returns: void

Argument Description Default
collection
object, required

collection to take values from

closure
function, required

UDF/Closure that call with the entries from the collection

function (value, idx, coll){}

Alias: function, callback, udf

parallel
boolean, optional

execute closures parallel

maxThreads
number, optional

maximum number of threads executed, ignored when argument "parallel" is set to false

Alias: maxThreadCount

20

Examples

function squareRoot(number) {
  Dump(Sqr(number));
}

numbers = [16, 64, 400]; Each(numbers, squareRoot);

See also