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

◆ create_node() [2/2]

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

Definition at line 56 of file list.h.

56 {
57 Node* node = static_cast<Node*>(mResource->allocate(sizeof(Node)));
58 new (node) Node(fl::move(value));
59 return node;
60 }
memory_resource * mResource
Definition list.h:34
A doubly-linked list container.
Definition list.h:21

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

+ Here is the call graph for this function: