Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thalesmg/campinas
Experimental delimited continuations library for Elixir using shift / reset
https://github.com/thalesmg/campinas
algebraic-effects continuation-passing-style delimited-continuations elixir shift-reset
Last synced: 24 days ago
JSON representation
Experimental delimited continuations library for Elixir using shift / reset
- Host: GitHub
- URL: https://github.com/thalesmg/campinas
- Owner: thalesmg
- License: gpl-3.0
- Created: 2021-08-29T23:49:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-29T23:50:00.000Z (about 3 years ago)
- Last Synced: 2024-10-01T15:43:41.043Z (about 1 month ago)
- Topics: algebraic-effects, continuation-passing-style, delimited-continuations, elixir, shift-reset
- Language: Elixir
- Homepage: https://thalesmg.github.io/posts/2021-08-27-elixir-delimited-continuations.html
- Size: 21.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Campinas
Delimited continuations library for Elixir.
This is currently an experimental library. See [this
post](https://thalesmg.github.io/posts/2021-08-27-elixir-delimited-continuations.html)
for more details on this library.## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `campinas` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:campinas, "~> 0.0.1"}
# alternatively
{:campinas, git: "https://github.com/thalesmg/campinas.git", tag: "0.0.1"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/campinas](https://hexdocs.pm/campinas).