1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# Fill Array ## Usage ```rs #[macro_use] extern crate fill_array; pub fn main() { fill![Vec::new(); 3] } ``` ## Output ```rs #[macro_use] extern crate fill_array; pub fn main() { [Vec::new(), Vec::new(), Vec::new()] } ```