Changelog
1.0.1 - April 3, 2014
map
and ap
on monad using functions instead of
methods.Changelog
1.0.0 - April 1, 2014
structures
now expect the method version of binary functions.Changelog
0.8.0 - March 24, 2014
inner
since there is no type
system to recover this information.liftInner
on the output to lift from the inner Transformer's inner to the outer transformer.
liftInner
can be chained to lift multiple levels.
var M = StateT (StateT (StateT (StateT Identity))));
// Lift get from inner most state.
M.liftInner.liftInner(M.inner.inner.inner.get);
Changelog
0.7.1 - March 24, 2014
Unique
possibly blowing up stack for large computations.Changelog
0.7.0 - March 24, 2014
UniqueT
to be passed a seed value.IdentityT
concat
.Changelog
0.6.0 - March 23, 2014
IdentityT
to transform a monad to itself.Trampoline
monad.Changelog
0.5.3 - March 22, 2014
EitherT
and ErrorT
.Changelog
0.5.0 - March 21, 2014
ContT
and DContT
.
ContT
.IdentityT
.Changelog
0.4.0 - March 20, 2014
EitherT
.ErrorT
Either
Error
.