Hex version badge License badge

Chunky

Chunking and Enumeration manipulations in Elixir.

iex> Chunky.permutations("😀🤷🏽‍♀️⭐️")
[
  "😀🤷🏽‍♀️⭐️", 
  "😀⭐️🤷🏽‍♀️", 
  "🤷🏽‍♀️😀⭐️", 
  "🤷🏽‍♀️⭐️😀", 
  "⭐️😀🤷🏽‍♀️", 
  "⭐️🤷🏽‍♀️😀"
]

iex> Chunky.permutations(1..4)
[ 
  [1, 2, 3, 4],
  [1, 2, 4, 3],
  [1, 3, 2, 4],
  [1, 3, 4, 2],
  [1, 4, 2, 3],
  [1, 4, 3, 2],
  ...
]

Installation

Install by adding chunky to your list of dependencies in mix.exs:

def deps do
  [
    {:chunky, "~> 0.1.1"}
  ]
end

Chunky documentation can be found on Hexdocs at https://hexdocs.pm/chunky.

Documentation

See Chunky on Hexdocs.