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

◆ operator++() [2/2]

template<typename T>
iterator fl::list< T >::iterator::operator++ ( int )
inline

Definition at line 111 of file list.h.

111 {
112 iterator temp = *this;
113 mNode = mNode->next;
114 return temp;
115 }
iterator(Node *node)
Definition list.h:96
Node * mNode
Definition list.h:92
A doubly-linked list container.
Definition list.h:21

References iterator(), and mNode.

+ Here is the call graph for this function: