mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
function factory (type, config, load, typed) {
|
|
/**
|
|
* Iterate over all elements of a matrix/array, and executes the given callback function.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.forEach(x, callback)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.forEach([1, 2, 3], function(value) {
|
|
* console.log(value);
|
|
* });
|
|
* // outputs 1, 2, 3
|
|
*
|
|
* See also:
|
|
*
|
|
* filter, map, sort
|
|
*
|
|
* @param {Matrix | Array} x The matrix to iterate on.
|
|
* @param {Function} callback The callback function is invoked with three
|
|
* parameters: the value of the element, the index
|
|
* of the element, and the Matrix/array being traversed.
|
|
*/
|
|
var forEach = typed('forEach', {
|
|
'Array, function': _forEach,
|
|
|
|
'Matrix, function': function (x, callback) {
|
|
return x.forEach(callback);
|
|
}
|
|
});
|
|
|
|
forEach.toTex = '\\mathrm{${name}}\\left(${args}\\right)';
|
|
|
|
return forEach;
|
|
}
|
|
|
|
/**
|
|
* forEach for a multi dimensional array
|
|
* @param {Array} array
|
|
* @param {Function} callback
|
|
* @private
|
|
*/
|
|
function _forEach (array, callback) {
|
|
var recurse = function (value, index) {
|
|
if (Array.isArray(value)) {
|
|
value.forEach(function (child, i) {
|
|
// we create a copy of the index array and append the new index value
|
|
recurse(child, index.concat(i));
|
|
});
|
|
}
|
|
else {
|
|
callback(value, index, array);
|
|
}
|
|
};
|
|
recurse(array, []);
|
|
}
|
|
|
|
exports.name = 'forEach';
|
|
exports.factory = factory;
|