tinyvecdeq 0.1.3

`VecDeque`-like data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_code)]

#[cfg(feature = "alloc")]
extern crate alloc;

pub mod arrayvecdeq;
pub mod array;

#[cfg(feature = "alloc")]
pub mod tinyvecdeq;

#[cfg(test)]
pub(crate) mod tests;