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

◆ create_node() [1/2]

template<typename T>
Node * fl::list< T >::create_node ( const T & value)
inlineprivate

Definition at line 50 of file list.h.

50 {
51 Node* node = static_cast<Node*>(mResource->allocate(sizeof(Node)));
52 new (node) Node(value);
53 return node;
54 }
memory_resource * mResource
Definition list.h:34
A doubly-linked list container.
Definition list.h:21

References mResource, and fl::type_rank< T >::value.

Referenced by insert(), and insert().

+ Here is the caller graph for this function: