Tools

Math iterator tools.

Usage

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

ns

Namespace containing math iterator tools.

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

The namespace exposes the following functions:

Examples

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

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