UNPKG

@stdlib/utils

Version:

Standard utilities.

194 lines (123 loc) 4.53 kB
<!-- @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. --> # naryFunction > Create a function that invokes a provided function with a specified number of arguments. <!-- 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 naryFunction = require( '@stdlib/utils/nary-function' ); ``` #### naryFunction( fcn, arity\[, thisArg] ) Returns a `function` that invokes a provided function with a specified number of arguments. ```javascript function sum() { var s; var i; s = 0; for ( i = 0; i < arguments.length; i++ ) { s += arguments[ i ]; } return s; } var fcn = naryFunction( sum, 2 ); var out = fcn( -1, -2, 3 ); // returns -3 ``` To set the `this` context when invoking the provided function, provide a `thisArg`. <!-- eslint-disable no-restricted-syntax --> ```javascript function Foo() { this.scalar = 1; } Foo.prototype.sum = function sum() { var s; var i; s = 0; for ( i = 0; i < arguments.length; i++ ) { s += arguments[ i ] * this.scalar; } return s; }; var ctx = { 'scalar': 3 }; var foo = new Foo(); var fcn = naryFunction( foo.sum, 2, ctx ); var out = fcn( 1, 2, 3 ); // returns 9 ``` </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 - The returned function **always** invokes the wrapped function with a specified number of arguments, even when the returned function is provided fewer arguments. The value for the missing arguments is equal to `undefined`. </section> <!-- /.notes --> <!-- Package usage examples. --> <section class="examples"> ## Examples <!-- eslint no-undef: "error" --> ```javascript var filledarrayBy = require( '@stdlib/array/filled-by' ); var naryFunction = require( '@stdlib/utils/nary-function' ); function fill( i ) { return i; } function sum() { var s; var i; s = 0; for ( i = 0; i < arguments.length; i++ ) { s += arguments[ i ]; } return s; } // Create a data array: var x = filledarrayBy( 10, 'float64', fill ); // Compute cumulative sums... var f; var i; for ( i = 0; i <= x.length; i++ ) { f = naryFunction( sum, i ); console.log( 'sum_%d = %d', i, 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/pick-arguments`][@stdlib/utils/pick-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function with specified arguments.</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/pick-arguments]: https://github.com/stdlib-js/utils/tree/main/pick-arguments <!-- </related-links> --> </section> <!-- /.links -->