#include <list.h>
gslib::static_container::list< Value, MaxSize >に対する継承グラフ
Public メソッド | |
list () | |
list (const list &other) | |
list & | operator= (const list &other) |
bool | full () const |
満タン? | |
Static Public メソッド | |
size_type | max_size () |
最大サイズ取得 | |
Private 型 | |
typedef boost::base_from_member< list_node_pool< Value, MaxSize > > | pool |
typedef lodge_list< Value > | parent |
アラインは正しく取られることを保障する。
|
|
|
|
|
00081 : parent( pool::member ) {} |
|
|
|
満タン?
00095 {
00096 return pool::member.full();
00097 }
|
|
最大サイズ取得
00100 {
00101 return MaxSize;
00102 }
|
|
|