FastLED 3.9.15
Loading...
Searching...
No Matches

◆ link_before()

template<typename T>
void fl::list< T >::link_before ( Node * pos,
Node * node )
inlineprivate

Definition at line 69 of file list.h.

69 {
70 node->next = pos;
71 node->prev = pos->prev;
72 pos->prev->next = node;
73 pos->prev = node;
74 }
A doubly-linked list container.
Definition list.h:21

References fl::list< T >::Node::next, pos, and fl::list< T >::Node::prev.

Referenced by emplace_back(), emplace_front(), insert(), insert(), sort(), and sort().

+ Here is the caller graph for this function: