Skip to content
Snippets Groups Projects
Commit 12e701ca authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Make `fmap` left associative.

This follows the associativity in Haskell. So, something like

  f <$> g <$> h

Is now parsed as:

  (f <$> g) <$> h

Since the functor is a generalized form of function application, this also now
also corresponds with the associativity of function application, which is also
left associative.
parent 58e2c608
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment