8000 GitHub - stdlib-js/utils-map-function at c9b45cb2482df6076aaf9b40254fbd7eea2fd6ce
[go: up one dir, main page]

Skip to content

Invoke a function n times and return an array of accumulated function return values.

License

Notifications You must be signed in to change notification settings

stdlib-js/utils-map-function

Repository files navigation

mapFun

NPM version Build Status Coverage Status

Invoke a function n times and return an array of accumulated function return values.

Installation

npm install @stdlib/utils-map-function

Alternatively,

The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.

Usage

var mapFun = require( '@stdlib/utils-map-function' );

mapFun( fcn, n[, thisArg ] )

Invokes a function n times and returns an array of accumulated function return values.

function fcn( i ) {
    return i;
}

var arr = mapFun( fcn, 5 );
// returns [ 0, 1, 2, 3, 4 ]

To set the function execution context, provide a thisArg.

function fcn( i ) {
    this.count += 1;
    return i;
}

var context = {
    'count': 0
};

var arr = mapFun( fcn, 5, context );
// returns [ 0, 1, 2, 3, 4 ]

console.log( context.count );
// => 5

Notes

  • The invoked function is provided a single argument: the invocation index (zero-based).

Examples

var randu = require( '@stdlib/random-base-randu' );
var mapFun = require( '@stdlib/utils-map-function' );

function rand( i ) {
    return randu() * i * 10.0;
}

var arr = mapFun( rand, 100 );
console.log( arr );

See Also


Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2023. The Stdlib Authors.

0