Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
267 views

Fixity of backtick operators?

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 ...