In F# interactive, how can I see a list of variables/functions defined in this session? like a function whos() in python or ls() in R? thanks,
|
feedback
|
|
You can probably implement this using .NET Reflection - local variables and functions are defined as static properties/methods of types in a single dynamic assembly. You can get that assembly by calling The following is a reasonably working function for getting local variables:
Here is an example:
The function returns "lazy" value back (because this was the simplest way to write it without reading values of all variables in advance which would be slow), so you need to use the | |||||||||
feedback
|
|
Unfortunately there is no way to do this in FSI at this stage. | |||
|
feedback
|
|
I'm developing FsEye, which uses a modified version of @Tomas' technique (filters out unit and function valued vars and only takes the latest You can see my modified version here. | |||||
feedback
|