macro_rules! hash_map {
() => { ... };
($($key:expr => $val:expr),*) => { ... };
}
Expand description
Creates a new HashMap
instance.
This macro can be used in two forms:
- Without arguments, it creates an empty
HashMap
. - With key-value pairs, it creates a
HashMap
and inserts the provided pairs into it.