queue

Macro queue 

Source
macro_rules! queue {
    ($T:ty, $N:expr) => { ... };
}
Expand description

Create a Queue that works in both heap and zero-heap modes.

§Example

let q = ove::queue!(u32, 8);