Mbed OS Reference
|
Public Member Functions | |
LinkEntry * | head () |
Return the element at the head of the list. More... | |
void | enqueue (LinkEntry *entry) |
Add an element to the tail of the list. More... | |
LinkEntry * | dequeue () |
Remove the element at the head of the list. More... | |
void | remove (LinkEntry *entry) |
Remove the specified element if it is in the list. More... | |
Definition at line 28 of file LinkedListBase.h.
LinkEntry * head | ( | ) |
Return the element at the head of the list.
void enqueue | ( | LinkEntry * | entry | ) |
Add an element to the tail of the list.
entry | New element to add |
LinkEntry * dequeue | ( | ) |
Remove the element at the head of the list.
void remove | ( | LinkEntry * | entry | ) |
Remove the specified element if it is in the list.
entry | Element to remove from the list |