Math Iterators

Math iterators.

Usage

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

ns

Namespace containing math iterators.

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

The namespace contains the following sub-namespaces:

  • ops: math operator iterators.
  • sequences: math iterators for generating sequences.
  • special: math iterators for special functions.
  • tools: math iterator tools.

Examples

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

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