entoli 0.1.2

A functional programming library inspired by haskell.
Documentation
1
2
3
4
5
6
7
pub trait Monoid {
    type A;

    fn mempty() -> Self::A;

    fn mappend(lhs: Self::A, rhs: Self::A) -> Self::A;
}