Section of an infix operator
From HaskellWiki
In Haskell there is a special syntax for partial application on infix operators.
- is equivalent to(2^)(^) 2
- is equivalent to(^2)flip (^) 2
In Haskell there is a special syntax for partial application on infix operators.