<div dir="auto">This is known as type inference.</div><div class="gmail_extra"><br><div class="gmail_quote">On Sep 26, 2017 17:41, "Jimbo" <<a href="mailto:jimbo4350@gmail.com">jimbo4350@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  
    
  
  <div text="#000000" bgcolor="#FFFFFF">
    <pre>"So when you go (Just 1 >>= \x -> return [] >>= \y -> return (x:y))
you know that return [] and return (x:y) are both using the Maybe
Monad instance because in Just 1, the m is Maybe."

I understand what you are saying but just to further clarify for my own understanding, is this what is meant by Haskell being able to reason about your program? That is, because you have "chosen" m to be the Maybe monad by using Just 1 (quoted above), the following return functions (in the above computation) use the definition for return below with m being Maybe?

<span class="m_465386685369354413kw1" style="margin:0px;padding:0px;font-weight:bold;color:rgb(0,102,204)">class</span> <span class="m_465386685369354413kw5" style="margin:0px;padding:0px;color:maroon;font-weight:bold">Monad</span> m <span class="m_465386685369354413kw1" style="margin:0px;padding:0px;font-weight:bold;color:rgb(0,102,204)">where</span>
    <span class="m_465386685369354413br0" style="margin:0px;padding:0px;color:green;font-weight:normal!important">(</span><span class="m_465386685369354413sy0" style="margin:0px;padding:0px;color:rgb(51,153,51);font-weight:bold">>>=</span><span class="m_465386685369354413br0" style="margin:0px;padding:0px;color:green;font-weight:normal!important">)</span>  <span class="m_465386685369354413sy0" style="margin:0px;padding:0px;color:rgb(51,153,51);font-weight:bold">::</span> m a <span class="m_465386685369354413sy0" style="margin:0px;padding:0px;color:rgb(51,153,51);font-weight:bold">-></span> <span class="m_465386685369354413br0" style="margin:0px;padding:0px;color:green;font-weight:normal!important">(</span>a <span class="m_465386685369354413sy0" style="margin:0px;padding:0px;color:rgb(51,153,51);font-weight:bold">-></span> m b<span class="m_465386685369354413br0" style="margin:0px;padding:0px;color:green;font-weight:normal!important">)</span> <span class="m_465386685369354413sy0" style="margin:0px;padding:0px;color:rgb(51,153,51);font-weight:bold">-></span> m b
    <span class="m_465386685369354413kw3" style="margin:0px;padding:0px;color:rgb(85,68,136)!important;font-weight:bold">return</span> <span class="m_465386685369354413sy0" style="margin:0px;padding:0px;color:rgb(51,153,51);font-weight:bold">::</span> a <span class="m_465386685369354413sy0" style="margin:0px;padding:0px;color:rgb(51,153,51);font-weight:bold">-></span> m a




</pre>
    <br>
    <div class="m_465386685369354413moz-cite-prefix">On 26/09/2017 2:28 PM, David McBride
      wrote:<br>
    </div>
    <blockquote type="cite">
      <pre>Monadic bind has this signature (Monad m => m a -> (a -> m b) -> m b.
Note that m is the same in both arguments and also the return value.

So when  you see p >>= \_ -> q ..., that means both p and q must be (m
Something), where the m is the same.

So when you go (Just 1 >>= \x -> return [] >>= \y -> return (x:y))
you know that return [] and return (x:y) are both using the Maybe
Monad instance because in Just 1, the m is Maybe.

So return [] is then equivalent to Just [], and return (x:y) is
equivalent to Just (x:y).  I hope that made sense.

On Tue, Sep 26, 2017 at 2:10 PM, Jimbo <a class="m_465386685369354413moz-txt-link-rfc2396E" href="mailto:jimbo4350@gmail.com" target="_blank"><jimbo4350@gmail.com></a> wrote:
</pre>
      <blockquote type="cite">
        <pre>Thank you very much. Final question, in the line:

return (1 : []) -- Just [1]

Does the value ([1] in this case) get wrapped in Just because of the type
signature of sequence? I.e

sequence :: Monad m => [m a] -> m [a]



On 26/09/2017 1:49 PM, David McBride wrote:
</pre>
        <blockquote type="cite">
          <pre>
Remember that foldr has flipped operator order from foldl.

</pre>
          <blockquote type="cite">
            <pre>:t foldl
</pre>
          </blockquote>
          <pre>
foldl :: Foldable t => (b -> a -> b) -> b -> t a -> b
</pre>
          <blockquote type="cite">
            <pre>
:t foldr
</pre>
          </blockquote>
          <pre>
foldr :: Foldable t => (a -> b -> b) -> b -> t a -> b

That means that you should expand them in the opposite order from how
it seems to read.

p >>= \x ->  -- Just 1 >>= \ 1
q >>= \y -> -- return [] >>= \ []
return (1 : []) -- Just [1]



On Tue, Sep 26, 2017 at 12:59 PM, Jimbo <a class="m_465386685369354413moz-txt-link-rfc2396E" href="mailto:jimbo4350@gmail.com" target="_blank"><jimbo4350@gmail.com></a> wrote:
</pre>
          <blockquote type="cite">
            <pre>
Hello everyone,

Just trying to understand the sequence function as follows:

sequence [Just 1]

-- evaluates to Just [1]

sequence = foldr mcons (return [])
     where mcons p q = p >>= \x -> q >>= \y -> return (x:y)

-- I'm trying to walk through the code as follows, I understand what is
below isn't
-- haskell code

p >>= \x ->              []
q >>= \y ->        Just 1
return (x:y)    --  [] : Just 1

Am I thinking of sequence correctly here?

Best regards,

Jim

______________________________<wbr>_________________
Beginners mailing list
<a class="m_465386685369354413moz-txt-link-abbreviated" href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a>
<a class="m_465386685369354413moz-txt-link-freetext" href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/beginners</a>
</pre>
          </blockquote>
          <pre>
______________________________<wbr>_________________
Beginners mailing list
<a class="m_465386685369354413moz-txt-link-abbreviated" href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a>
<a class="m_465386685369354413moz-txt-link-freetext" href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/beginners</a>
</pre>
        </blockquote>
        <pre>

______________________________<wbr>_________________
Beginners mailing list
<a class="m_465386685369354413moz-txt-link-abbreviated" href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a>
<a class="m_465386685369354413moz-txt-link-freetext" href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/beginners</a>
</pre>
      </blockquote>
      <pre>______________________________<wbr>_________________
Beginners mailing list
<a class="m_465386685369354413moz-txt-link-abbreviated" href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a>
<a class="m_465386685369354413moz-txt-link-freetext" href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/beginners</a>
</pre>
    </blockquote>
    <br>
  </div>

<br>______________________________<wbr>_________________<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-<wbr>bin/mailman/listinfo/beginners</a><br>
<br></blockquote></div></div>