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.
Showing
- theories/base.v 2 additions, 1 deletiontheories/base.v
- theories/fin_maps.v 1 addition, 1 deletiontheories/fin_maps.v
- theories/finite.v 2 additions, 2 deletionstheories/finite.v
- theories/list.v 2 additions, 2 deletionstheories/list.v
- theories/option.v 1 addition, 1 deletiontheories/option.v
- theories/zmap.v 1 addition, 1 deletiontheories/zmap.v
Loading
Please register or sign in to comment