On Wed, Apr 8, 2009 at 4:57 PM, Thomas Davie &lt;<a href="mailto:tom.davie@gmail.com">tom.davie@gmail.com</a>&gt; wrote:<br>&gt;<br>&gt; We have two possible definitions of an &quot;iterateM&quot; function:<br>&gt;<br>&gt; iterateM 0 _ _ = return []<br>
&gt; iterateM n f i = (i:) &lt;$&gt; (iterateM (n-1) f =&lt;&lt; f i)<br>&gt;<br>&gt; iterateM n f i = sequence . scanl (&gt;&gt;=) (return i) $ replicate n f<br>&gt;<br>&gt; The former uses primitive recursion, and I get the feeling it should be better written without it.  The latter is quadratic time – it builds up a list of monadic actions, and then runs them each in turn.<br>
&gt;<br>&gt; Can anyone think of a version that combines the benefits of the two?<br><br>There seems to be a combinator missing in Control.Monad. Several people have suggested that iterateM should be implemented using a fold. But that seems very unnatural, we&#39;re trying to *build* a list, not *consume* it. This suggests that we should use an unfold function instead. Now, I haven&#39;t found one in the standard libraries that works for monads but arguably there should be one. So, let&#39;s pretend that the following function exists:<br>
<span style="font-family: courier new,monospace;">unfoldM :: Monad m =&gt; (b -&gt; m (Maybe(a,b))) -&gt; b -&gt; m [a]</span><br><br>Then the implementation of iterateM becomes more natural:<br><span style="font-family: courier new,monospace;">\begin{code}</span><br>
<span style="font-family: courier new,monospace;">iterateM n f i = unfoldM g (n,i)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  where g (0,i) = return Nothing</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">        g (n,i) = do j &lt;- f i</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">                     return (Just (i,(n-1,j)))</span><br>
<font face="arial,helvetica,sans-serif"><span style="font-family: courier new,monospace;">\end{code}</span><br>I&#39;m not sure whether this version is to your satisfaction but it&#39;s quite intuitive IMHO.<br><br>Here&#39;s the function I used to test various versions of iterateM:<br>
<span style="font-family: courier new,monospace;">\begin{code}</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">test it = it 4 (\i -&gt; putStrLn (show i) &gt;&gt; return (i+1)) 0</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">\end{code}</span><br><br>Cheers,<br><br>Josef<br></font>