macro_rules! map { ($( $key: expr => $val: expr ),* $(,)*) => { ... }; }
Expand description
A macro to create a FxHashMap.
Example:
Trailing commas are allowed. Commas between elements are required (even if the expression is a block).
macro_rules! map { ($( $key: expr => $val: expr ),* $(,)*) => { ... }; }
A macro to create a FxHashMap.
Example:
Trailing commas are allowed. Commas between elements are required (even if the expression is a block).