/simple_monads

This library supports the Maybe and Result monads "a la" Elm for the Elixir language.

Primary LanguageElixir

SimpleMonads

This library support the Maybe and Result monad "a la" Elm

Installation

If available in Hex, the package can be installed as:

  1. Add simple_monads to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:simple_monads, "~> 0.1.0"}]
end
```
  1. Ensure simple_monads is started before your application:
```elixir
def application do
  [applications: [:simple_monads]]
end
```