Skip to content

Latest commit

 

History

History
142 lines (86 loc) · 7.46 KB

File metadata and controls

142 lines (86 loc) · 7.46 KB

Simulation Iterators

Simulation iterators.

Usage

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

ns

Namespace containing simulation iterators.

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/simulate/iter' );

console.log( objectKeys( ns ) );