<div dir="ltr"><div><div>> Even if you're sure it's not a Nothing, it might be better to use<br>
> <br>
> maybe (error "Impossible, because (...)") id<br><br></div>Which is the same thing as:<br><br></div>fromMaybe (error "Impossible, because (...)")<br><div><div><div>
<div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 22, 2015 at 1:23 PM, Marcin Mrotek <span dir="ltr"><<a href="mailto:marcin.jan.mrotek@gmail.com" target="_blank">marcin.jan.mrotek@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello,<br>
<br>
Well, you CAN use fromJust, but bear in mind that you should only use<br>
it if you are absolutely, positively, 100% sure the Maybe value you<br>
are calling fromJust on is of the form (Just something), because your<br>
program will error out if you call fromJust on a Nothing. Even if<br>
you're sure it's not a Nothing, it might be better to use<br>
<br>
maybe (error "Impossible, because (...)") id<br>
<br>
instead, so that you at the very least get a meaningful error message<br>
in case "impossible" happens ;) Other than that, it's recomennded to<br>
either use the maybe function, or pattern matching:<br>
<br>
case foo of<br>
  Just x -> ...<br>
  Nothing -> ...<br>
<br>
instead.<br>
<br>
Best regards,<br>
Marcin Mrotek<br>
<div class=""><div class="h5">_______________________________________________<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" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</div></div></blockquote></div><br></div></div></div></div></div>