<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Fri, May 8, 2015 at 2:25 PM, Shishir Srivastava <span dir="ltr"><<a href="mailto:shishir.srivastava@gmail.com" target="_blank">shishir.srivastava@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>I've imported the State monad module and used in the 'pop' function that will pop the head out of the list but am getting error in GHCi. </div><div></div></blockquote></div><br>You are probably working from outdated documentation of some kind. The original standalone monads like State from mtl1 were replaced several years ago with type aliases (in this case `type State s a = StateT s Identity a`) in mtl2, which means State is no longer a constructor. The `state` function can be used as a quick replacement for the old `State` constructor for any purpose other than pattern matching.<br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div>brandon s allbery kf8nh                               sine nomine associates</div><div><a href="mailto:allbery.b@gmail.com" target="_blank">allbery.b@gmail.com</a>                                  <a href="mailto:ballbery@sinenomine.net" target="_blank">ballbery@sinenomine.net</a></div><div>unix, openafs, kerberos, infrastructure, xmonad        <a href="http://sinenomine.net" target="_blank">http://sinenomine.net</a></div></div></div>
</div></div>