When the language extension TypeOperators
is enabled, it's possible to define own type operators. Also, it's possible to set their relative precedence with infix*
. But what's the precedence of (->)
, for example?
> :i (->)
data (->) a b -- Defined in `GHC.Prim'
instance Monad ((->) r) -- Defined in `GHC.Base'
instance Functor ((->) r) -- Defined in `GHC.Base'
instance Applicative ((->) a) -- Defined in `Control.Applicative'
instance Arrow (->) -- Defined in `Control.Arrow'
instance Monoid b => Monoid (a -> b) -- Defined in `Data.Monoid'
instance ArrowLoop (->) -- Defined in `Control.Arrow'
instance ArrowChoice (->) -- Defined in `Control.Arrow'
instance ArrowApply (->) -- Defined in `Control.Arrow'
Here are the relevant bits of the GHC sources in
compiler/basicTypes/BasicTypes.lhs
:So the fixity of
->
isinfixr 0
.You can also infer this from an error message. Create the following Haskell source file:
Then: