fill-array 0.2.1

A rust macro allowing to fill arrays with an expression
Documentation
1
2
3
4
5
6
7
8
#[macro_use]
extern crate fill_array;

const SIZE: usize = 5;

pub fn main() {
    fill![Vec::new(); SIZE]
}