cgp-monad 0.7.0

Monadic constructs for CGP computation
Documentation
1
2
3
4
5
6
7
pub trait LiftValue<Value, Output> {
    type Output;

    fn lift_value(value: Value) -> Self::Output;

    fn lift_output(output: Output) -> Self::Output;
}