Is it possible to query the ghci for the type it inferred for a function inside another function?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This is a quick and ugly hack, but what I usually do is just use the function in the wrong way and read the error message:
GHCi output:
Although this leaves out the context |
|||||
|
|
You might try doing it by setting a breakpoint on it, so the function is in scope from the debugger. Also I think that EclipseFP can tell you the types of things when you mouse over them, at least some of the time. |
|||||||||
|