array_buf 0.1.1

Highly optimized fixed-capacity deque buffer stored on the stack
Documentation
1
2
3
4
5
6
7
8
9
10
//! # Array Buffer
//! 
//! Highly optimized fixed-capacity deque buffer stored on the stack.

#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(not(feature = "std"), no_std)]

mod deque;

pub use deque::*;