This library provides methods for turning integers into easier to remember 'words' and vice-versa. A port of munemo to Elixir.
If available in Hex, the package can be installed
by adding mnemox
to your list of dependencies in mix.exs
:
def deps do
[
{:mnemox, "~> 0.1.0"}
]
end
iex> Mnemox.to_s(947110)
"yoshida"
iex> Mnemox.to_i("yoshida")
947110
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/mnemox.