#fill #array #allowing #expression #macro

fill-array

允许使用表达式填充数组的Rust宏

3个不稳定版本

0.2.1 2024年4月15日
0.2.0 2024年4月15日
0.1.0 2023年11月4日

过程宏中排名402

Download history 1/week @ 2024-05-17

每月下载量75

MIT许可证

4KB
60

填充数组

用法

#[macro_use]
extern crate fill_array;

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

输出

#[macro_use]
extern crate fill_array;

pub fn main() {
    [Vec::new(), Vec::new(), Vec::new()]
}

依赖

~260–710KB
~17K SLoC