monad 0.0.2

Stackless monads in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![crate_name="monad"]
#![crate_type="lib"]

#![license = "MIT"]
#![doc(html_root_url = "http://epsilonz.github.io/monad.rs/doc/monad/")]

#![feature(phase)]
#![feature(unboxed_closures)]

//! This crate implements various monad structures.

#[phase(link, plugin)]
extern crate free_macros;
extern crate free;
extern crate tailrec;

pub mod monad;