Modules

Macros

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