array.every()

This function calls a given closure/function with every element in a given array and returns true, if all of the closure calls returns true.

array.every( closure=function, parallel=boolean, maxThreads=number )

Returns: Boolean

Argument Description
closure
function, required

function/closure that implements the following constructor [function(any value[, numeric index,array array]):boolean].

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

Examples

array = [ { name = "Frank", age = 40 }, { name = "Sue", age = 21 }, { name = "Jose", age = 54 } ];
	all_old = array.every(function(person) {
	    return person.age >= 40;
	},true,5);
	dump(all_old); // false

See also