Skip to content

Permutate an array by applying a function to its elements.

Notifications You must be signed in to change notification settings

da99/funcy_perm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

funcy_perm

Take an array, apply a function to all possible combinations.

Install & Use

Shell:

npm install funcy_perm

CoffeeScript:

funcy_perm = require "funcy_perm"

my_arr = [ 0 , 0 , 0 ]

funcy_perm(my_arr).perm ( val, i ) -> 
  val + 1

// returns
[ 
  [ 0, 0, 0 ],
  [ 0, 0, 1 ],
  [ 0, 1, 0 ],
  [ 0, 1, 1 ], 
  
  [ 1, 0, 0 ],
  [ 1, 0, 1 ], 
  [ 1, 1, 0 ], 
  [ 1, 1, 1 ]
]

Note

An empty array returns, an array with an empty array. Example:

funcy_perm([]).perm some_func

// returns 
[ [] ]

About

Permutate an array by applying a function to its elements.

Resources

Stars

Watchers

Forks

Packages

No packages published