Special Functions

Math iterators for special functions.

Usage

var ns = require( '@stdlib/math/iter/special' );

ns

Namespace containing math iterators for special functions.

var iterators = ns;
// returns {...}

The namespace contains the following functions for creating iterator protocol-compliant iterators:

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/math/iter/special' );

console.log( objectKeys( ns ) );
Did you find this page helpful?