@stdlib/utils
Version:
Standard utilities.
199 lines (124 loc) • 5.34 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.
-->
# filterArguments
> Create a function that invokes a provided function according to a predicate 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 filterArguments = require( '@stdlib/utils/filter-arguments' );
```
#### filterArguments( fcn, predicate\[, thisArg] )
Returns a `function` that invokes a provided function according to a `predicate` function.
```javascript
function foo( a, b ) {
return [ a, b ];
}
function predicate( v ) {
return ( v !== 2 );
}
var bar = filterArguments( foo, predicate );
var out = bar( 1, 2, 3 );
// returns [ 1, 3 ]
```
The `predicate` 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 predicate( 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 = filterArguments( foo.scale, predicate, ctx );
var out = bar( 1, 2, 3 );
// returns [ 10, 60 ]
```
</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">
## Notes
- Only those arguments in which the `predicate` function returns a truthy value are applied to a provided function.
</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' );
function fill( i ) {
return i;
}
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 elements...
var f;
var i;
for ( i = 0; i < x.length-1; i++ ) {
f = filterArguments( add, factory( i, i+2 ) );
console.log( 'sum(x_%d, x_%d) = %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/mask-arguments`][@stdlib/utils/mask-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function according to an argument mask.</span>
- <span class="package-name">[`@stdlib/utils/reject-arguments`][@stdlib/utils/reject-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function according to a predicate function.</span>
- <span class="package-name">[`@stdlib/utils/reorder-arguments`][@stdlib/utils/reorder-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function with reordered arguments.</span>
- <span class="package-name">[`@stdlib/utils/reverse-arguments`][@stdlib/utils/reverse-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function with arguments in reverse order.</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/mask-arguments]: https://github.com/stdlib-js/utils/tree/main/mask-arguments
[@stdlib/utils/reject-arguments]: https://github.com/stdlib-js/utils/tree/main/reject-arguments
[@stdlib/utils/reorder-arguments]: https://github.com/stdlib-js/utils/tree/main/reorder-arguments
[@stdlib/utils/reverse-arguments]: https://github.com/stdlib-js/utils/tree/main/reverse-arguments
<!-- </related-links> -->
</section>
<!-- /.links -->