<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 22, 2015 at 11:38 AM, 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:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">My next question was how do i only get "34" or "3" i.e. the Maybe value without wrapped in to a 'Maybe' ?</blockquote></div><br>"do" syntax lets you temporarily "unwrap" the value, but it must be rewrapped later. And if the specific monad in question is not IO, you cannot do I/O (e.g. "print" the value as in your initial message). This reflects the mapping of "do" to uses of (>>=)<br><br><div class="gmail_extra">    Prelude> :t (>>=)</div><div class="gmail_extra">    (>>=) :: Monad m => m a -> (a -> m b) -> m b</div><div><br></div><div>In this example, `m` is Maybe.</div><div><br></div><div>As it turns out, Maybe is one of the monads that lets you use pattern matching to extract values. Not all monads do; you cannot do this with IO, for example. The `maybe` function is often used instead of explicit pattern matching.</div><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>