[][src]Macro generic_vec::uninit_array

macro_rules! uninit_array {
    (const $n:expr) => { ... };
    ($n:expr) => { ... };
}

a helper macro to safely create an array of uninitialized memory of any size

use the const prefix if you need to initialize a const or static, otherwise don't use the const modifier