![]() |
General Utility Library for C++17 25.4.1
|
The General Utility Library provides several classes that can contain elements of other types.
SlidingBuffer: A circular data buffer of (semi-)fixed capacity to which elements can be added at the front or at the back.
SlidingBufferExposed: The same as SlidingBuffer, but with direct iterator access to the underlying buffer for maximum performance.
SmallVector: A resizable container with contiguous storage that can hold a specified number of elements without allocating memory on the heap.
expected: A class template that can either contain a value of a certain (expected) type or an error value. It should behave like std::expected from C++23 for almost all use cases.