I know the man pages for C++ are installed with libstdc++6-<version>-doc
, but when I'm looking for a function like stoull
there is no man page. Even apropos
does not find anything.
Man pages are available online: http://www.cplusplus.com/reference/string/stoull/ or http://en.cppreference.com/w/cpp/string/basic_string/stoul but I would like to have them offline.
Is there a way to install the man pages under GNU/Linux?
--Corbie