#queue #buffer #ring

ring_buffer

RingBuffer is a queue with added random access

11 releases (6 stable)

2.0.2 Jul 2, 2021
2.0.0 Jul 1, 2021
1.0.2 Jul 1, 2021
1.0.0 Jun 1, 2021
0.1.1 Jul 13, 2019

#15 in #ring


Used in gpcas_simulator

MIT/Apache

49KB
831 lines

ring_buffer

pipeline status

RingBuffer is a mix of a vector and a queue. It allows for direct element access as well as pushing and popping elements like a queue.

Example

use ringbuffer::RingBuffer;

fn main() {
    let mut buffer = RingBuffer::new();
    
    let first_index = buffer.push(42);
    let second_index = buffer.push(9001);
    
    println!("{} == {}", buffer.get_relative(0),
        buffer.get_absolute(first_index));
    
    println!("{} == {}", buffer.get_relative(1),
        buffer.get_absolute(second_index));
}

Why use this?

The features of RingBuffer come in handy when processing a stream of elements while also needing to access elements at random.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps