macro_rules! queue {
($T:ty, $N:expr) => { ... };
}Expand description
Create a crate::Queue that works in both heap and zero-heap modes.
§Example
ⓘ
let q = ove::queue!(u32, 8);macro_rules! queue {
($T:ty, $N:expr) => { ... };
}Create a crate::Queue that works in both heap and zero-heap modes.
let q = ove::queue!(u32, 8);