fixed-queue 0.4.8

no_std, no_alloc, lock-free, wait-free, use [T; N]. support `Vec`/`VecDeque`/`spsc`/`History`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]

mod history;
mod linear_map;
mod linear_set;
pub mod sync;
mod vec;
mod vec_deque;

pub use history::History;
pub use linear_map::LinearMap;
pub use linear_set::LinearSet;
pub use vec::Vec;
pub use vec_deque::VecDeque;