I know about perlop. What I am looking for is a quick lookup like the GHCi :info
command:
ghci> :info (+)
class (Eq a, Show a) => Num a where
(+) :: a -> a -> a
...
-- Defined in GHC.Num
infixl 6 +
where I learn (+)
is left-associative and has a precedence level of 6 from the infixl 6 +
line.