0 | ||| This module export the operators used with their fixity
1 | module Data.Ops
2 |
3 | export infixr 10 ^    -- Exponentiation
4 | export prefix 9 <+    -- Left choice
5 | export prefix 9 +>    -- Right choice
6 | export infixr 6 ##    -- Both at once
7 |
8 |