Operator sections is a feature in Haskell that lets us write partially applied infix operators, like `(+ 2)` meaning `(\x-> x + 2)`.
Operator sections is a feature in Haskell that lets us write partially applied infix operators, like (+ 2)
meaning (\x-> x + 2)
.
More here.