<div dir="ltr">He means why is the first argument a -> b -> b in one function but b -> a -> b in the other.  And I have no answer for that.  I admit to having been caught by that in the past.  You can't just replace one with the other in code, you have to do a flip on the operator.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Nov 12, 2015 at 12:34 PM, Alex Belanger <span dir="ltr"><<a href="mailto:i.caught.air@gmail.com" target="_blank">i.caught.air@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><p dir="ltr"><span class="">foldr :: (a -> b -> b) -> b -> [a] -> b<br></span><span class="">
foldr :: (b -> a -> a) -> a -> [b] -> a</span></p>
<p dir="ltr">are exactly the same types; simply inverted names for the type variables.</p>
<p dir="ltr">I don't clearly see any benefit.</p><span class="HOEnZb"><font color="#888888">
<p dir="ltr">Alex.</p></font></span><div class="HOEnZb"><div class="h5">
<div class="gmail_quote">On Nov 12, 2015 12:00 PM, "Martin Vlk" <<a href="mailto:martin@vlkk.cz" target="_blank">martin@vlkk.cz</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi, my first intuition about this is that in data constructor it<br>
technically doesn't matter, but you could argue that "a" represents the<br>
actual result of the function so it comes first.<br>
Second comes the state, which is the side thing, hence the<br>
secondary/less important position.<br>
<br>
As for the order of type constructor parameters you are right - state is<br>
part of the structure that Monoid, Functor, Applicative, Monad and the<br>
like use.<br>
<br>
Martin<br>
<br>
martin:<br>
> runState :: State s a -> s -> (a, s)<br>
><br>
> I understand that in the constructor s has to be first, so we can turn (State s) into a monad. But why doesn't s come<br>
> first in the result too, as in<br>
><br>
> runState :: State s a -> s -> (s, a)<br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org" target="_blank">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-bin/mailman/listinfo/beginners</a><br>
</blockquote></div>
</div></div><br>_______________________________________________<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-bin/mailman/listinfo/beginners</a><br>
<br></blockquote></div><br></div>