3 releases
0.0.3 | Mar 13, 2022 |
---|---|
0.0.2 | Mar 2, 2022 |
0.0.1 | Mar 1, 2022 |
#6 in #util-lib
21 downloads per month
Used in 2 crates
11KB
208 lines
Description
Attribute macros for const array.
Usage
use const_array_attrs::sorted;
#[sorted]
pub const KEYWORDS: [(&'static str, u8); 3] = [
("Pa", 1),
("N", 2),
("ft", 3),
];
let mut it = KEYWORDS.iter();
assert_eq!(it.next(), Some(&("N", 2)));
assert_eq!(it.next(), Some(&("Pa", 1)));
assert_eq!(it.next(), Some(&("ft", 3)));
Project status
This package is in the very early stage.
Dependencies
~1.5MB
~36K SLoC