An open API service indexing awesome lists of open source software.

https://github.com/wdalmut/ex-bijective

Bijective function in Elixir
https://github.com/wdalmut/ex-bijective

bijective-functions elixir shortener

Last synced: 12 months ago
JSON representation

Bijective function in Elixir

Awesome Lists containing this project

README

          

# Bijective

In mathematics, a bijection, bijective function, or one-to-one correspondence is a function
between the elements of two sets, where each element of one set is paired with exactly one
element of the other set, and each element of the other set is paired with exactly one
element of the first set.

```elixir
iex> Bijective.encode(19587376)
"bulJA"
iex> Bijective.decode("bulJA")
19587376
```

## Installation

You can install by adding `bijective` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:bijective, "~> 0.0.2"}
]
end
```

Documentation can be found at: [https://hexdocs.pm/bijective](https://hexdocs.pm/bijective).