10 releases

Uses old Rust 2015

0.2.6 Jul 27, 2020
0.2.5 Jun 21, 2020
0.2.4 Mar 26, 2020
0.2.3 Jan 9, 2020
0.1.2 Jul 21, 2017

#633 in Data structures

Download history 3006/week @ 2023-12-13 1748/week @ 2023-12-20 1794/week @ 2023-12-27 2817/week @ 2024-01-03 4022/week @ 2024-01-10 2798/week @ 2024-01-17 3169/week @ 2024-01-24 13063/week @ 2024-01-31 3525/week @ 2024-02-07 4501/week @ 2024-02-14 5074/week @ 2024-02-21 3520/week @ 2024-02-28 5519/week @ 2024-03-06 5970/week @ 2024-03-13 3523/week @ 2024-03-20 3228/week @ 2024-03-27

19,019 downloads per month
Used in 22 crates (15 directly)

MIT/Apache

25KB
512 lines

circular-queue

crates.io Documentation Build Status Build Status

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

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–350KB