|
Queue
1.0.0
A C++17 Library of various `queue` containers
|
An STL-style fixed-size circular queue. More...
#include <algorithm>#include <cassert>#include <cstddef>#include <cstring>#include <initializer_list>#include <iterator>#include <stdexcept>#include <cstdint>#include <type_traits>Go to the source code of this file.
Classes | |
| class | circular_queue< T, Alloc > |
| Fixed capacity, STL-style, templated circular buffer. More... | |
| struct | circular_queue< T, Alloc >::queue_pointer |
| pointer with parity More... | |
| struct | circular_queue< T, Alloc >::const_queue_pointer |
| constant pointer with parity More... | |
| class | circular_queue< T, Alloc >::const_iterator |
| constant iterator for the circular_queue class. More... | |
| class | circular_queue< T, Alloc >::iterator |
| iterator for the circular_queue class. More... | |
An STL-style fixed-size circular queue.