fixed-vec-deque

Build Status

Note: this crate is still in heavy development. Please be careful!

This crate provides a fixed-size VecDeque implementation (a.k.a. a fixed-size ring buffer) that only provides referential access to what it is storing.

We try as much as possible to mimic the API of [VecDeque], but due to only dealing with references, some differences are inevitable.

For information on how to use it, see the [Documentation].

Missing APIs

Some APIs are missing. If you want to help out, leave a comment in the issue!

LICENSE

This project contains code derived from [VecDeque] (Rust stdlib) and [smallvec].