https://github.com/slogsdon/elixir-control
An exploratory look into functors, applicatives, and monads for Elixir
https://github.com/slogsdon/elixir-control
applicative elixir functor monad
Last synced: 6 months ago
JSON representation
An exploratory look into functors, applicatives, and monads for Elixir
- Host: GitHub
- URL: https://github.com/slogsdon/elixir-control
- Owner: slogsdon
- License: mit
- Created: 2015-10-04T13:03:53.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-12-22T19:04:08.000Z (almost 8 years ago)
- Last Synced: 2025-04-13T00:34:09.027Z (6 months ago)
- Topics: applicative, elixir, functor, monad
- Language: Elixir
- Homepage: http://hexdocs.pm/control
- Size: 31.3 KB
- Stars: 22
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Control
[](https://travis-ci.org/slogsdon/elixir-control)
[](https://coveralls.io/r/slogsdon/elixir-control)
[](https://hex.pm/packages/control)An exploratory look into functors, applicatives, and monads for Elixir. See [the accompanying blog post](http://www.slogsdon.com/functors-applicatives-and-monads-in-elixir/) for more details.
> More code, documentation, and tests are in progress.
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add control to your list of dependencies in `mix.exs`:
def deps do
[{:control, "~> 0.0.1"}]
end2. Ensure control is started before your application:
def application do
[applications: [:control]]
end## License
Control is released under the MIT License.
See [LICENSE](https://github.com/slogsdon/elixir-control/blob/master/LICENSE) for details.