|
| struct | allocator |
| | Defines the allocator type of a data structure. More...
|
| |
| struct | capacity |
| | Sets the capacity of a data structure at compile-time. More...
|
| |
| struct | fixed_sized |
| | Configures a data structure as fixed-sized. More...
|
| |
| class | queue |
| | The queue class provides a multi-writer/multi-reader queue, pushing and popping is lock-free, construction/destruction has to be synchronized. More...
|
| |
| class | spsc_queue |
| | The spsc_queue class provides a single-writer/single-reader fifo queue, pushing and popping is wait-free. More...
|
| |
| class | stack |
| | The stack class provides a multi-writer/multi-reader stack, pushing and popping is lock-free, construction/destruction has to be synchronized. More...
|
| |