current amount of elements used in the buffer
{ StaticRingBuffer!(2, int) foo; assert(foo.length == 0); foo ~= 1; assert(foo.length == 1); foo ~= 1; assert(foo.length == 2); // append but let first element drop out foo ~= 1; assert(foo.length == 2)
See Implementation
current amount of elements used in the buffer