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

◆ insert() [2/2]

template<typename T>
iterator fl::list< T >::insert ( iterator pos,
T && value )
inline

Definition at line 345 of file list.h.

345 {
347 link_before(pos.mNode, new_node);
348 ++mSize;
349 return iterator(new_node);
350 }
void link_before(Node *pos, Node *node)
Definition list.h:69
Node * create_node(const T &value)
Definition list.h:50
fl::size mSize
Definition list.h:33
A doubly-linked list container.
Definition list.h:21

References create_node(), link_before(), fl::fl::move(), mSize, pos, and fl::type_rank< T >::value.

+ Here is the call graph for this function: