rsmonad 0.2.4

Haskell-style monads for idiomatic Rust.
Documentation
/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */

//! Optional monads reliant on the standard library.

mod blastdoor;
mod io;
mod list;
mod orphans;
mod unwind_monad;

pub use blastdoor::*;
pub use io::*;
pub use list::*;
pub use orphans::*;
pub use unwind_monad::*;