Say I've written the following amazin piece of code:
func = do
a <- Just 5
return a
It's pretty pointless, I know. Here, a is 5, and func returns Just 5.
Now I rewrite my awesome (yet pointless) function:
func' = do
a <- Nothing
return a
This function returns Nothing, but what the heck is a? There's nothing to extract from a Nothing value, yet the program doesn't whine when I do something like this:
func'' = do
a <- Nothing
b <- Just 5
return $ a+b
I just have a hard time seeing what actually happens. What is a? In other words: What does <- actually do? Saying it "extracts the value from right-side and binds it to the left-side" is obviously over-simplifying it. What is it I'm not getting?
Thanks :)
<-translates to>>=. In case ofMaybemonad, if the first argument (i.e. the part right to<-) isNothing, nothing else is evaluated and>>=just returnsNothing. So, to answer your question: the execution doesn't even reacha. – Vitus Apr 18 '12 at 7:41>>=) because there is no general way to extract a value from a monad. Notice how you end every do-block by putting the result back into the monad, often usingreturn. You never really had a variableathat was equal to 5. – Nefrubyr Apr 19 '12 at 13:38