map 1.3.0

This crate provides the `map!` macro and `map_insert!` macro, to create a HashMap collection and insert key-value pairs. Inspired by the `vec!` macro.
Documentation
1
2
3
4
5
6
7
8
//! # `map!` macro Rust crate
//!
//! This crate provides `map!` macros to create map collections and
//! insert key-value pairs. This is inspired by the `vec!` macro.

pub mod map;
pub mod map_insert;
pub mod map_remove;