Alphabetify
Create an alphabetical hash. Taking an existing alphabetic hash (of any length),
will return the next hash in sequence. If all characters in hash are rolled over,
will append a new char (increase the length by 1.)
eg. 'ZZZZ' -> 'AAAAA' eg. 'AAAZ' -> 'AABA'
Installation
If available in Hex, the package can be installed as:
- Add
alphabetifyto your list of dependencies inmix.exs:
```elixir
def deps do
[{:alphabetify, "~> 0.1.0"}]
end
```
- Ensure
alphabetifyis started before your application:
```elixir
def application do
[applications: [:alphabetify]]
end
```