Is there a tool / library like Haskell’s vacuum for F# to visualize values as graphs?
Is there a tool / library like Haskell’s vacuum for F# to visualize values
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no F#-specific tool similar to Haskell’s vacuum.
If you’re using F# Interactive, fseye is worth to explore. It illustrates values in FSI sessions by an object tree inspector which is convenient for debugging.
To profile F# applications, you may want to look at CLR Profiler. The tool does visualize memory allocation, garbage collection and states of the heap. Unfortunately it is not F#-specific, so some indications aren’t easy to interprete.