
2 Oct
2012
2 Oct
'12
2:13 p.m.
Hi Christopher, On Tue, Oct 02, 2012 at 10:12:44AM -0800, Christopher Howard wrote:
Say I've got a stream of monadic calculations, like so:
code: -------- do a' <- f a a'' <- g a' a''' <- h a'' return a''' --------
There is a cleaner way to do that, yes? (Without using all the tick marks?)
foldM (\a f -> f a) a [f, g, h] Greetings, Daniel