Public メソッド | |
bool | equal (iterator_base const &other) const |
void | increment () |
void | decrement () |
Protected メソッド | |
void | setNext (link *next) |
void | setPrev (link *prev) |
link * | getNode () |
Protected 変数 | |
link * | node_ |
フレンド | |
class | lodge_list |
|
|
lodge_list.h の 58 行で定義されています。 参照先 static_container::lodge_list< Value >::iterator_base::node_. 参照元 static_container::lodge_list< Value >::iterator::operator!=(), static_container::lodge_list< Value >::const_iterator::operator!=(), static_container::lodge_list< Value >::iterator::operator==(), と static_container::lodge_list< Value >::const_iterator::operator==().
00058 { 00059 return this->node_ == other.node_; 00060 } |
|
lodge_list.h の 51 行で定義されています。 参照先 static_container::lodge_list< Value >::iterator_base::node_.
00051 { 00052 BOOST_ASSERT( 0 != node_ ); 00053 return node_; 00054 } |
|
|
lodge_list.h の 43 行で定義されています。 参照先 static_container::lodge_list< Value >::iterator_base::node_.
00043 { 00044 BOOST_ASSERT( 0 != node_ ); 00045 node_->next = next; 00046 } |
|
lodge_list.h の 47 行で定義されています。 参照先 static_container::lodge_list< Value >::iterator_base::node_.
00047 { 00048 BOOST_ASSERT( 0 != node_ ); 00049 node_->prev = prev; 00050 } |
|
static_container::lodge_list< Value >::const_iterator, と static_container::lodge_list< Value >::iteratorで再定義されています。 lodge_list.h の 55 行で定義されています。 |
|