time-to-botec/js/node_modules/@stdlib/math/iter/sequences
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
composites feat: add the node modules 2022-12-03 12:44:49 +00:00
cubes feat: add the node modules 2022-12-03 12:44:49 +00:00
docs/types feat: add the node modules 2022-12-03 12:44:49 +00:00
even-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
factorials feat: add the node modules 2022-12-03 12:44:49 +00:00
fibonacci feat: add the node modules 2022-12-03 12:44:49 +00:00
fifth-powers feat: add the node modules 2022-12-03 12:44:49 +00:00
fourth-powers feat: add the node modules 2022-12-03 12:44:49 +00:00
integers feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
lucas feat: add the node modules 2022-12-03 12:44:49 +00:00
negafibonacci feat: add the node modules 2022-12-03 12:44:49 +00:00
negalucas feat: add the node modules 2022-12-03 12:44:49 +00:00
negative-even-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
negative-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
negative-odd-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
nonfibonacci feat: add the node modules 2022-12-03 12:44:49 +00:00
nonnegative-even-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
nonnegative-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
nonpositive-even-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
nonpositive-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
nonsquares feat: add the node modules 2022-12-03 12:44:49 +00:00
odd-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
positive-even-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
positive-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
positive-odd-integers feat: add the node modules 2022-12-03 12:44:49 +00:00
primes feat: add the node modules 2022-12-03 12:44:49 +00:00
squared-triangular feat: add the node modules 2022-12-03 12:44:49 +00:00
squares feat: add the node modules 2022-12-03 12:44:49 +00:00
triangular feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Sequences

Standard library math iterators for generating sequences.

Usage

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

ns

Standard library math iterators for generating sequences.

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

console.log( objectKeys( ns ) );