Crate simple_collection_macros
Source - maps
- sets
- bmap
- The
bmap
macro will construct a BTreeMap
using the std
’s
implementation. - bset
- The
bset
macro will construct a BTreeSet
using the std
’s
implementation. - hmap
- The
hmap
macro will construct a HashMap
using the std
’s
implementation by default. - hset
- The
hset
macro will construct a HashSet
using the std
’s
implementation by default. - map
- A generic
map
macro that wraps either [bmap
] or [hmap
] for convenience
depending on feature flags. - set
- A generic
set
macro that wraps either [bset
] or [hset
] for convenience
depending on feature flags.