What is the fixity of backtick operators?

For instance in this code from Real World Haskell:

ghci> (1+) `fmap` [1,2,3] ++ [4,5,6]
[2,3,4,4,5,6]

It's evident the backtick operator `fmap` has a higher fixity than ++, but none is given by GHCi.

link|improve this question

78% accept rate
1  
@dabe4420 BTW, The bug only affects fixity declarations on functions that are defined on the REPL. Compare something like 'f' `elem` "abc" ++ "ijk" which is working fine. – FUZxxl Oct 18 '11 at 14:17
feedback

1 Answer

up vote 12 down vote accepted

ยง4.4.2 of the Haskell Report states that

Any operator lacking a fixity declaration is assumed to be infixl 9

"Any operator" includes normal function names in backticks.

Your example shows that `fmap` does have higher fixity than ++, because ++ acts on the result of the fmap.

link|improve this answer
3  
It's worth mentioning that you can specify fixity for such operators. For example, 1 + 2 `const` 5 = 3, but 1 + 2 `div` 5 = 1. – Rotsor Oct 18 '11 at 15:30
2  
@Rotsor: Your example is not an example because the value of the expression 1 + 2 `const` 5 would be 3 even if the fixity of `const` were like that of `div`. – Tsuyoshi Ito Oct 18 '11 at 19:52
1  
Oh, how could I? 2 `div` 1 ^ 2 = 2 and 2 `const` 1 ^ 2 = 4 are examples then. – Rotsor Oct 19 '11 at 1:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.