[Haskell-beginners] Question on evaluating function compostion

John Wiegley johnw at newartisans.com
Wed Aug 20 10:12:18 UTC 2014


>>>>> Chul-Woong Yang <cwyang at aranetworks.com> writes:

> Does (f . g) x y z equal ((((f . g) x) y) z)  in haskell?

Correct, since function application is left-associative and binds more tightly
than any other operator.

John


More information about the Beginners mailing list