permutation-iterator

0.1.0 • Public • Published

permutation-iterator Build Status codecov

Iterate by permutations in a list

permutation

Install

$ npm install permutation-iterator

Usage

Array

const permutationIterator = require('permutation-iterator');
 
const it = permutationIterator(['a', 'b', 'c']);
 
it.next(); // => { value: ['a', 'b', 'c'], done: false }
it.next(); // => { value: ['b', 'a', 'c'], done: false }
it.next(); // => { value: ['c', 'a', 'b'], done: false }
it.next(); // => { value: ['a', 'c', 'b'], done: false }
it.next(); // => { value: ['b', 'c', 'a'], done: false }
it.next(); // => { value: ['c', 'b', 'a'], done: false }
it.next(); // => { value: undefined, done: true }

Object

const it = permutationIterator({
  1: 'a',
  2: 'b',
  3: 'c'
});
 
// Same bahavior as arrays
it.next(); // => { value: ['a', 'b', 'c'], done: false }

License

MIT © Thibaut Vieux

Package Sidebar

Install

npm i permutation-iterator

Weekly Downloads

1

Version

0.1.0

License

MIT

Unpacked Size

5.12 kB

Total Files

7

Last publish

Collaborators

  • melkir