UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

49 lines (48 loc) 1.38 kB
import { optimizeCallback } from '../../utils/optimizeCallback.js'; import { factory } from '../../utils/factory.js'; import { recurse } from '../../utils/array.js'; var name = 'forEach'; var dependencies = ['typed']; export var createForEach = /* #__PURE__ */factory(name, dependencies, _ref => { var { typed } = _ref; /** * 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. */ return typed(name, { 'Array, function': _forEach, 'Matrix, function': function Matrix_function(x, callback) { x.forEach(callback); } }); }); /** * forEach for a multidimensional array * @param {Array} array * @param {Function} callback * @private */ function _forEach(array, callback) { recurse(array, [], array, optimizeCallback(callback, array, name)); }