3 Oct
2012
3 Oct
'12
2:15 a.m.
You may use >>=: f a >>= g >>= h Or you may use >=> (from Control.Monad): (f >=> g >=> h) a Cheers, -- Felipe.