notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

Associativity.md (370B)


      1 # Associativity (Context of FP)
      2 
      3 **Source:** Effective Haskell
      4 
      5 **Chapter:** 1
      6 
      7 **Definition:** Associativity is the choice in direction to parse (right to left or left to right). 
      8 
      9 Haskell is by default left associative (this can be overriden for infix functions with a fixity declaration), meaning it applies precedence starting from the left and moving to the right.