macro_rules! buffer {
() => { ... };
($elem:expr; $n:expr) => { ... };
($($x:expr),+ $(,)?) => { ... };
}
Expand description
A macro for constructing buffers akin to vec![..]
.
macro_rules! buffer {
() => { ... };
($elem:expr; $n:expr) => { ... };
($($x:expr),+ $(,)?) => { ... };
}
A macro for constructing buffers akin to vec![..]
.