Crate limited_queue

Source
Expand description

§LimitedQueue

LimitedQueue<T> is a limited queue that overrides the oldest data if trying to push a data when the queue is full.

All operations are of O(1) complexity, except the constructor with O(Vec::with_capacity).

Structs§

LimitedQueue
A circular queue that overrides the oldest data if trying to push data when queue is full.
LimitedQueueIterator