macro_rules! map { ($name:ident, &key: ty, &val: ty) => { ... }; ($($key:expr => $val:expr),* $(,)?) => { ... }; }
A macro to create a HashMap with the given key-value pairs.
HashMap