L4Re Operating System Framework
Interface and Usage Documentation
|
The list type for keeping all weak references to an object. More...
#include <weak_ref>
Additional Inherited Members | |
Public Member Functions inherited from cxx::H_list< T, POLICY > | |
void | add (T *e) |
Add element to the front of the list. | |
void | push_front (T *e) |
Add element to the front of the list. | |
T * | pop_front () |
Remove and return the head element of the list. | |
Iterator | insert (T *e, Iterator const &pred) |
Insert an element at the iterator position. | |
Public Member Functions inherited from cxx::Bits::Basic_list< POLICY > | |
bool | empty () const |
Check if the list is empty. | |
Value_type | front () const |
Return the first element in the list. | |
void | clear () |
Remove all elements from the list. | |
Iterator | begin () |
Return an iterator to the beginning of the list. | |
Const_iterator | begin () const |
Return a const iterator to the beginning of the list. | |
Const_iterator | end () const |
Return a const iterator to the end of the list. | |
Iterator | end () |
Return an iterator to the end of the list. | |
Static Public Member Functions inherited from cxx::H_list< T, POLICY > | |
static Iterator | iter (T *c) |
Return an iterator for an arbitrary list element. | |
static bool | in_list (T const *e) |
Check if the given element is currently part of a list. | |
static Iterator | insert_after (T *e, Iterator const &pred) |
Insert an element after the iterator position. | |
static void | insert_before (T *e, Iterator const &succ) |
Insert an element before the iterator position. | |
static void | replace (T *p, T *e) |
Replace an element in a list with a new element. | |
static void | remove (T *e) |
Remove the given element from its list. | |
static Iterator | erase (Iterator const &e) |
Remove the element at the given iterator position. | |
Static Public Member Functions inherited from cxx::Bits::Basic_list< POLICY > | |
static Const_iterator | iter (Const_value_type c) |
Return a const iterator that begins at the given element. | |
Protected Attributes inherited from cxx::Bits::Basic_list< POLICY > | |
POLICY::Head_type | _f |
Pointer to front of the list. | |
The list type for keeping all weak references to an object.
On destrunction of a list, all weak references to the respective object are set to nullptr
.