2 #include "AudioTools/CoreAudio/AudioBasic/Collections/List.h"
18 bool enqueue(T& data){
19 return l.push_front(data);
23 if (l.end()->prior==
nullptr)
return false;
24 data = *(l.end()->prior);
28 bool dequeue(T& data){
29 return l.pop_back(data);
45 l.setAllocator(allocator);