fast-cartesian-product

2.0.1 • Public • Published

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:

  • fast-cartesian-product

    focusing on speed, and only work on arrays(arrayLikes is also supported, but not recommended)

  • power-cartesian-product

    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

Package Sidebar

Install

npm i fast-cartesian-product

Weekly Downloads

189

Version

2.0.1

License

MIT

Unpacked Size

19.9 kB

Total Files

13

Last publish

Collaborators

  • fisker