This crate provides a macro `map!`.
The macro creates a map collection then insert key-value pairs.
The macro uses the Rust standard library HashMap.
Examples:
```rust
use map::*;
let a = map!("a" => "b", "c" => "d");
let b = map!(
);
let c: HashMap<i32, i32> = map!(
);
```