Skip to content

Latest commit

 

History

History
109 lines (64 loc) · 3.06 KB

README.md

File metadata and controls

109 lines (64 loc) · 3.06 KB

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.
  • utils: math utility iterators.

Examples

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

console.log( objectKeys( ns ) );