@stdlib/utils-constant-function

Constant function.

Usage no npm install needed!

<script type="module">
  import stdlibUtilsConstantFunction from 'https://cdn.skypack.dev/@stdlib/utils-constant-function';
</script>

README

Constant Function

NPM version Build Status Coverage Status

Constant function.

A constant function is a function whose output value is the same for every input value.

Installation

npm install @stdlib/utils-constant-function

Usage

var constantFunction = require( '@stdlib/utils-constant-function' );

constantFunction( x )

Returns a constant function which always returns x.

var fcn = constantFunction( 'beep' );
// returns <Function>

var v = fcn();
// returns 'beep'

v = fcn();
// returns 'beep'

Notes

  • When provided an object reference, the returned function always returns the same reference.

    var obj = {};
    var fcn = constantFunction( obj );
    
    var bool = ( fcn() === obj );
    // returns true
    

Examples

var constantFunction = require( '@stdlib/utils-constant-function' );

var bool;
var fcn;
var arr;
var v;
var i;

fcn = constantFunction( 3.14 );
for ( i = 0; i < 10; i++ ) {
    v = fcn();
    // returns 3.14
}

arr = [ 1, 2, 3 ];
fcn = constantFunction( arr );
for ( i = 0; i < 10; i++ ) {
    v = fcn();
    bool = ( v === arr );
    // returns true
}

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-2022. The Stdlib Authors.