FastLED 3.9.15
|
Definition at line 67 of file priority_queue.h.
#include <priority_queue.h>
Public Types | |
using | compare_type = Compare |
using | size_type = size_t |
using | value_type = T |
Public Member Functions | |
PriorityQueue ()=default | |
PriorityQueue (const Compare &comp) | |
const Compare & | compare () const |
bool | empty () const |
void | pop () |
void | push (const T &value) |
size_type | size () const |
const T & | top () const |
Private Attributes | |
Compare | _comp |
VectorT | _data |