Simple question. Is it possible to check the type of a variable that is only alive within a function?
For example:
main = do
x <- something
How can I check the type of x?
I can't do :type x in ghci because x is not global.
|
|
|
Another way (quite similar to RobAgar's and hacky as well) is to explicitly specify some wrong type for the local variable in question, e.g.:
Then ghci will give us an error:
which shows that the actual type of "x" is [String]. |
|||||
|
|
There is a hacky way:
where |
|||
|
|
|
There is no easy way to do this. If your |
|||
|
|
|
You can use the GHCi Debugger:
|
|||
|
|
|
This is sort of the obvious non-answer. Given a local binding of the form
In order to know the type of |
|||
|
|
Another option is Scion which is basically an external wrapper over the GHC api which acts as a server providing IDE-like capabilities for editors like Emacs and Vim. In the readme, it mentions the "experimental" command This lets you find out the type of a local declaration without compiling your file or loading into GHCi, which means it won't disrupt your flow of thought as much. |
||||
|
|