11 releases
Uses old Rust 2015
new 0.2.7 | Mar 14, 2025 |
---|---|
0.2.6 | Jul 27, 2020 |
0.2.5 | Jun 21, 2020 |
0.2.4 | Mar 26, 2020 |
0.2.0 | Jul 24, 2017 |
#841 in Data structures
18,405 downloads per month
Used in 38 crates
(18 directly)
25KB
512 lines
circular-queue
A circular buffer-like queue container. Created with a set capacity. When pushing new items over capacity, old ones get overwritten. Supports iteration in newest to oldest and in oldest to newest order.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
lib.rs
:
A circular buffer-like queue.
The CircularQueue<T>
is created with a set capacity, then items are pushed in. When the queue
runs out of capacity, newer items start overwriting the old ones, starting from the oldest.
There are built-in iterators that go from the newest items to the oldest ones and from the oldest items to the newest ones.
Two queues are considered equal if iterating over them with iter()
would yield the same
sequence of elements.
Enable the serde_support
feature for Serde support.
Examples
use circular_queue::CircularQueue;
let mut queue = CircularQueue::with_capacity(3);
queue.push(1);
queue.push(2);
queue.push(3);
queue.push(4);
assert_eq!(queue.len(), 3);
let mut iter = queue.iter();
assert_eq!(iter.next(), Some(&4));
assert_eq!(iter.next(), Some(&3));
assert_eq!(iter.next(), Some(&2));
Dependencies
~0–375KB