We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
开发者_如何学Go Improve this questionIs there something that is kind of a cross between graphmod and haddock? I want a diagram like graphmod showing dependencies/relationships, but I want to include additional documentation in the diagram.
Not an existing one. Here are the list of available Haskell visualisation utilities (at least those on Hackage):
graphmod which you've already found: visualise module dependencies.
prof2dot visualise profiling reports
hs2dot visualise Haskell code
vacuum (and related packages) visualises the data structures at run-time
SourceGraph (disclaimer: this is mine) aims to provide different forms of visualisation of the call graphs and perform some analyses; haven't had much time to work on this lately though.
graphtype is for comparing data types
It may be possible to use doxygen to generate documentation with visualisation, but a quick Google didn't reveal any work on providing support for Haskell in doxygen (and it would require different markup than what Haddock uses).
精彩评论