cartesian-product-generator
v1.1.1
Published
ES2015 generator (iterable iterator) for cartesian product. Put combinatorial explosion back in the kennel.
Downloads
4,848
Maintainers
Readme
cartesian-product-generator
An ES2015 generator of the Cartesian product—you know, where you have several arrays and want to iterate over all combinations, but might not want to store them all in memory at the same time, which is what many existing libraries, e.g., lodash.product
, do.
Another iterable cartesian product library called product-iterable
is available, but I wanted this library to be dead simple: it uses a single dependency, ind2sub
, to handle converting linear indexes into subscripts into a list of arrays, then indexes over all combinations, yield
ing repeatedly. Furthermore, since it's a TypeScript project, this library is easy to use with TypeScript or other ES6+ environments.
Installation and usage
Node.js In your Node project's directory, execute the following in the command line:
$ npm install --save cartesian-product-generator
Then you can load it into Node via
const product = require('cartesian-product-generator').product;
const iterator = product(['r', 'g', 'b'], ['early', 'late'], ['high', 'low']);
console.log([...iterator])
// [ [ 'r', 'early', 'high' ],
// [ 'g', 'early', 'high' ],
// [ 'b', 'early', 'high' ],
// [ 'r', 'late', 'high' ],
// [ 'g', 'late', 'high' ],
// [ 'b', 'late', 'high' ],
// [ 'r', 'early', 'low' ],
// [ 'g', 'early', 'low' ],
// [ 'b', 'early', 'low' ],
// [ 'r', 'late', 'low' ],
// [ 'g', 'late', 'low' ],
// [ 'b', 'late', 'low' ] ]
Note how product
returns an iterator/iterable. You can use this in Array.from
, new Set()
, array slicing like above, and anywhere else in ES2015 that takes an iterable or iterator, including for...of
, which allows you to iterate over each combination without ever storing all of them in memory:
for (let combo of product(['r', 'g', 'b'], ['early', 'late'], ['high', 'low'])) {
console.log('Look ma! Easy on the memory: ' + combo.join('+'));
}
For TypeScript, import it as
import {product} from 'cartesian-product-generator';
If you see errors about type 'IterableIterator'
, you have to add "es2015"
to the "lib"
key in your tsconfig.json
. If you then encounter errors complaining that Type IterableIterator is not an array or string type
, you need to enable "downlevelIteration": true
in your tsconfig.json
, which, according to the documentation, "Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'". (Hopefully this second error message is improved by the time you read this: see issue.)
Browser Load cartesian-product-generator-browser.js
into your HTML via <script>
, then access it through
const iterator = cartesianProductGenerator.product(['r', 'g', 'b'], ['early', 'late'], ['high', 'low']);
console.log([...iterator])