[Haskell-beginners] stream of monadic calculations

Felipe Almeida Lessa felipe.lessa at gmail.com
Tue Oct 2 20:15:04 CEST 2012


You may use >>=:

  f a >>= g >>= h

Or you may use >=> (from Control.Monad):

  (f >=> g >=> h) a

Cheers,

-- 
Felipe.



More information about the Beginners mailing list