3.3.2.2. GNU C++ 標準ライブラリードキュメント
ライブラリーコンポーネントの
man
を使用するには、libstdc++-docs
パッケージをインストールします。これで、ライブラリーが提供するほとんどすべてのリソースの man
ページ情報が提供されます。たとえば、vector
コンテナについての情報を表示するには、その完全修飾コンポーネント名を使用します。
man std::vector
これで以下の情報が表示されます (一部省略)
std::vector(3) std::vector(3) NAME std::vector - A standard container which offers fixed time access to individual elements in any order. SYNOPSIS Inherits std::_Vector_base< _Tp, _Alloc >. Public Types typedef _Alloc allocator_type typedef __gnu_cxx::__normal_iterator< const_pointer, vector > const_iterator typedef _Tp_alloc_type::const_pointer const_pointer typedef _Tp_alloc_type::const_reference const_reference typedef std::reverse_iterator< const_iterator >
libstdc++-docs
パッケージは、以下のディレクトリーで HTML 形式のマニュアルおよび参照情報を提供します。
file:///usr/share/doc/libstdc++-docs-version/html/spine.html
libstdc++ 開発のメインサイトは gcc.gnu.org です。