4个版本
0.2.1 | 2023年7月11日 |
---|---|
0.2.0 | 2022年11月22日 |
0.1.1 | 2022年11月22日 |
0.1.0 | 2022年11月22日 |
#1539 in Proc宏
2,295 每月下载量
在 26 个crate中(通过 monoio)使用
8KB
131 行
Auto Const Array
使用此宏来声明一个不指定长度的const数组。
use auto_const_array::auto_const_array;
auto_const_array! {
// Additional attributes and docs are supported.
/// Common array with public visibility.
#[allow(unused)]
pub const ARRAY_COMMON: [u8; _] = [1, 2, 4];
/// Special array with cfg conditional compling.
const ARRAY_WITH_ATTR: [u8; _] = [1, #[cfg(unix)] 2]
}
依赖
~310–770KB
~18K SLoC