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

◆ unlink()

template<typename T>
void fl::list< T >::unlink ( Node * node)
inlineprivate

Definition at line 76 of file list.h.

76 {
77 node->prev->next = node->next;
78 node->next->prev = node->prev;
79 }
A doubly-linked list container.
Definition list.h:21

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

Referenced by erase(), sort(), and sort().

+ Here is the caller graph for this function: