Is there any way to print out the inferred type of a nested variable in ghci? Consider the code,
let f = g where
g (x :: Int) = x
then, it'd be nice to query the type of g, e.g. :t f.g would print out Int -> Int.
|
You can coax this information out by giving an appropriately wrong type annotation and checking the error message.
|
|||
|
|
ghci debugger can print it for you with a properly placed breakpoint (but you'll need to load your definition within a module):
Then in ghci:
|
|||
|
|
ghave the same type asf?:t f. – Mechanical snail Jul 20 '11 at 3:43{:and:}on their own lines. – pat Jul 20 '11 at 6:40