monadify 0.3.0

A library for functional programming abstractions in Rust, focusing on Monads, Functors, Applicatives, and related concepts.
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(not(feature = "legacy"))]
pub mod except;
#[cfg(not(feature = "legacy"))]
pub mod reader;
#[cfg(not(feature = "legacy"))]
pub mod state;
#[cfg(not(feature = "legacy"))]
pub mod trans;
#[cfg(not(feature = "legacy"))]
pub mod writer;