<div dir="ltr"><div>Remember that StateT (and by extension, State) is just a newtype wrapper.  Newtypes have no runtime cost.  In this case it simply contains a 
function.  Constructing an expression full of binds against StateT before supplying an argument via runStateT is no different than combining several functions and supplying their argument later.<br><br>As far as memory usage is concerned, there is one caveat.  The state variable that is returned after every bind can build up thunks if it is altered but not fully evaluated in any given step.  This could lead to a memory link as operations are tacked onto the state variable you supplied.  If you use Control.Monad.State.Strict, that variable will be evaluated whether you use it or not, preventing laziness from building up thunks.<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Jun 12, 2016 at 5:11 PM, martin <span dir="ltr"><<a href="mailto:martin.drautzburg@web.de" target="_blank">martin.drautzburg@web.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello all,<br>
<br>
the State Monad wraps around a computation s -> (s,a). Inside a do block I am actually assembling such a computation.<br>
Now when I do this many times, i.e. in a recursice call, I am builing a huge expression<br>
<br>
        m a >>= (\a -> mb) >>= (\b -> mc) ...<br>
<br>
The result of this expression is a function s -> (s,a). But I cannot see how the space for this expression can be<br>
reclaimed, and how it could ever run in constant space. Once I call runState and I provide an initial s, I have some<br>
hope, but before?<br>
<br>
How is this supposed to work? How do I avoid allocating space for this huge expression?<br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</blockquote></div><br></div>