I can see the type of an infix operator in GHCi with :t like so:
>:t (.)
(.) :: (b -> c) -> (a -> b) -> a -> c
How can i see the operator precedence in GHCi? is that possible?
Also, bonus question, is there a way to see the source of these prelude functions through ghci?