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;