Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you man cpp functions?

Tags:

c++

linux

manpage

For example,how do you man std::sort?

My tries seems not on the right track.

UPDATE

yum install libstdc++-docs gives me No package libstdc++-docs available

like image 769
wireshark Avatar asked May 30 '11 06:05

wireshark


1 Answers

As far as I know, c++ functions are not included by default in man pages in any linux distribution. You have to use manually install them with :

yum install man-pages libstdc++-docs
like image 143
BЈовић Avatar answered Oct 17 '22 07:10

BЈовић