2 releases (1 stable)
1.0.1 | Feb 17, 2022 |
---|---|
0.1.0 | Feb 17, 2022 |
#2270 in Rust patterns
4KB
62 lines
some macros for dicts
creates hashmap
, hashset
, btreeset
, btreemap
map has two sytaxts
let a = 1;
let b = 2;
hashmap![
a: a+b,
b: b
],
is equal to
std::collections::HashMap::from([(a, a), (b, a + b)])
but if you dont include commas it acts like yml and gets names from ident
hashmap![
a: a+b
b: b
],
is equal to
std::collections::HashMap::from([("a", a + b), ("b", b)])