The core of a double linked list, pointers to next, previous.
More...
#include <cmsis-plus/utils/lists.h>
The core of a double linked list, pointers to next, previous.
Definition at line 154 of file lists.h.
◆ double_list_links()
os::utils::double_list_links::double_list_links |
( |
| ) |
|
|
inline |
Construct a list node (explicitly set to nullptr).
Definition at line 879 of file lists.h.
◆ ~double_list_links()
os::utils::double_list_links::~double_list_links |
( |
| ) |
|
|
inline |
Destruct the node.
Definition at line 886 of file lists.h.
◆ next() [1/2]
◆ next() [2/2]
◆ prev() [1/2]
◆ prev() [2/2]
◆ unlink()
void os::utils::static_double_list_links::unlink |
( |
void |
| ) |
|
|
inherited |
Remove the node from the list.
- Returns
- Nothing.
Update the neighbours to point to each other, skipping the node.
For more robustness, to prevent unexpected accesses, the links in the removed node are nullified.
Definition at line 57 of file lists.cpp.
◆ unlinked()
bool os::utils::static_double_list_links::unlinked |
( |
void |
| ) |
|
|
inlineinherited |
Check if the node is unlinked.
- Return values
-
true | The node is not linked. |
false | The node is linked to a list. |
Definition at line 847 of file lists.h.
◆ next_
Pointer to next node.
Definition at line 138 of file lists.h.
◆ prev_
Pointer to previous node.
Definition at line 133 of file lists.h.
The documentation for this class was generated from the following file: