Function isFull [src]
Returns true if the ring buffer is full and false otherwise.
Prototype
pub fn isFull(self: RingBuffer) bool
Parameters
self: RingBuffer
Source
pub fn isFull(self: RingBuffer) bool {
return self.mask2(self.write_index + self.data.len) == self.read_index;
}