byte ring buffer for rust.
https://crates.io/crates/byte_rb
To use byte_rb
, first add this to your Cargo.toml
:
toml
[dependencies]
byte_rb = "1"
Or Run the following Cargo command in your project directory:
cargo add byte_rb
```rust use byte_rb::BrBuffer;
let mut cbuf = BrBuffer::new(6); println!("{:?}", cbuf);
assert!(cbuf.append(6, b"123456").unwrap()); asserteq!(cbuf.rpos(), 0); asserteq!(cbuf.wpos(), 6); // "123456" let result = cbuf.get(3).unwrap(); asserteq!(result, b"123"); asserteq!(cbuf.cumulatedlen(), 3); asserteq!(cbuf.rpos(), 3); assert_eq!(cbuf.wpos(), 6); // " 456"
assert!(cbuf.append(3, b"789").unwrap()); asserteq!(cbuf.cumulatedlen(), 6); asserteq!(cbuf.rpos(), 3); asserteq!(cbuf.wpos(), 3); // "789456"
let result = cbuf.get(1).unwrap(); asserteq!(result, b"4"); asserteq!(cbuf.rpos(), 4); asserteq!(cbuf.wpos(), 3); asserteq!(cbuf.cumulated_len(), 5); // "789 56"
let result = cbuf.get(5).unwrap(); asserteq!(result, b"56789"); asserteq!(cbuf.rpos(), 3); asserteq!(cbuf.wpos(), 3); asserteq!(cbuf.cumulated_len(), 0);
assert_eq!(cbuf.capacity(), 6); ```
This project is licensed under the MIT license.