@stdlib/utils
Version:
Standard utilities.
191 lines (120 loc) • 4.33 kB
Markdown
<!--
@license Apache-2.0
Copyright (c) 2021 The Stdlib Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
# mapArguments
> Create a function that applies arguments to a provided function after transforming arguments according to a callback function.
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
<section class="intro">
</section>
<!-- /.intro -->
<!-- Package usage documentation. -->
<section class="usage">
## Usage
```javascript
var mapArguments = require( '@stdlib/utils/map-arguments' );
```
#### mapArguments( fcn, clbk\[, thisArg] )
Returns a `function` that invokes a provided function after transforming arguments according to a callback function.
```javascript
function foo( a, b, c ) {
return [ a, b, c ];
}
function clbk( v ) {
return v * 2;
}
var bar = mapArguments( foo, clbk );
var out = bar( 1, 2, 3 );
// returns [ 2, 4, 6 ]
```
The `clbk` function is provided the following arguments:
- **value**: argument value.
- **index**: argument index.
To set the `this` context when invoking the input function, provide a `thisArg`.
<!-- eslint-disable no-restricted-syntax -->
```javascript
function clbk( v ) {
return v * 2;
}
function Foo() {
this.x = 1;
this.y = 2;
}
Foo.prototype.scale = function scale( a, b ) {
return [ this.x*a, this.y*b ];
};
var ctx = {
'x': 10,
'y': 20
};
var foo = new Foo();
var bar = mapArguments( foo.scale, clbk, ctx );
var out = bar( 1, 2 );
// returns [ 20, 80 ]
```
</section>
<!-- /.usage -->
<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<section class="notes">
</section>
<!-- /.notes -->
<!-- Package usage examples. -->
<section class="examples">
## Examples
<!-- eslint no-undef: "error" -->
```javascript
var filledarrayBy = require( '@stdlib/array/filled-by' );
var add = require( '@stdlib/math/base/ops/add' );
var filterArguments = require( '@stdlib/utils/filter-arguments' );
var mapArguments = require( '@stdlib/utils/map-arguments' );
function fill( i ) {
return i;
}
function scale( v ) {
return v * 2.0;
}
function factory( i, j ) {
return predicate;
function predicate( value, index ) {
return ( i <= index ) && ( index < j );
}
}
// Create a data array:
var x = filledarrayBy( 10, 'float64', fill );
// Compute the sum of consecutive squared elements...
var f;
var i;
for ( i = 0; i < x.length-1; i++ ) {
f = filterArguments( mapArguments( add, scale ), factory( i, i+2 ) );
console.log( 'sum(x_%d^2, x_%d^2) = %d', i, i+1, f.apply( null, x ) );
}
```
</section>
<!-- /.examples -->
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<section class="references">
</section>
<!-- /.references -->
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
<section class="related">
* * *
## See Also
- <span class="package-name">[`@stdlib/utils/filter-arguments`][@stdlib/utils/filter-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function according to a predicate function.</span>
</section>
<!-- /.related -->
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<section class="links">
<!-- <related-links> -->
[@stdlib/utils/filter-arguments]: https://github.com/stdlib-js/utils/tree/main/filter-arguments
<!-- </related-links> -->
</section>
<!-- /.links -->