A simple circular buffer that will allow you get the next element in a buffer It does not ensure that the item is not in use, but simply loops around.
More...
template<typename T, size_t t_Size>
class Fling::CircularBuffer< T, t_Size >
A simple circular buffer that will allow you get the next element in a buffer It does not ensure that the item is not in use, but simply loops around.
- Template Parameters
-
| T | the type inside this circular buffer. Stack allocated |
| t_Size | The max size of this buffer, must be a power of 2! |