fast-cartesian-product
v2.0.1
Published
fast cartesian product
Downloads
1,115
Maintainers
Readme
fast-cartesian-product
super fast cartesian product
before v1.0.0
this module was not focusing on speed, now it's split into to two modules:
focusing on speed, and only work on arrays(arrayLikes is also supported, but not recommended)
focusing on unlimited combinations, less memory, more types, if you need more powerful tool, use this one
Examples
import fastCartesianProduct from 'fast-cartesian-product'
const inputs = [
[0, 1],
['A', 'B'],
]
console.log(fastCartesianProduct(inputs))
// [ [ 0, 'A' ], [ 0, 'B' ], [ 1, 'A' ], [ 1, 'B' ] ]
more examples
git clone https://github.com/fisker/fast-cartesian-product.git
cd fast-cartesian-product
yarn
node -r esm examples/standard-52-card-deck.js
Files
dist/
├─ index.js ( UMD )
├─ index.min.js ( UMD, compressed )
├─ index.cjs ( CommonJS )
├─ index.mjs ( ES Module )
└─ index.min.mjs ( ES Module, compressed )
API
combinations = fastCartesianProduct(sets)
Returns: array of combinations
sets
type: array