0.2.1
| 2024年4月15日 |
0.2.0
| 2024年4月15日 |
0.1.0
| 2023年11月4日 |
在过程宏中排名402
每月下载量75次
填充数组
用法
#[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()]
}