Hacker News new | ask | show | jobs
by lenkite 1170 days ago
This is in general is a problem with C++ libraries because doc generation is not standardized unlike Rust and other languages.
1 comments

Doxygen was a great step forwards when it came out, but C++ documentation doesn’t seem to have evolved since, and it only fulfills the “reference” pillar of documentation.

Rust’s books (mdbook?) are amazing. Lots of libraries have good, clear documentation explaining how to use the library, on top of the automatic docs.rs output (which I still sometimes find difficult to navigate, but think is just my incomplete understanding). I have no idea how the community has managed to consistently achieve this.