#hash-map #map #macro

bin+lib hmap

添加 hmap! 宏以方便生成 HashMap

1 个不稳定版本

使用旧的 Rust 2015

0.1.0 2018年9月7日

#322#hash-map

Download history • Rust 包仓库 29/week @ 2024-03-18 • Rust 包仓库 33/week @ 2024-03-25 • Rust 包仓库 57/week @ 2024-04-01 • Rust 包仓库 17/week @ 2024-04-08 • Rust 包仓库 17/week @ 2024-04-15 • Rust 包仓库 23/week @ 2024-04-22 • Rust 包仓库 13/week @ 2024-04-29 • Rust 包仓库 17/week @ 2024-05-06 • Rust 包仓库 39/week @ 2024-05-13 • Rust 包仓库 13/week @ 2024-05-20 • Rust 包仓库 15/week @ 2024-05-27 • Rust 包仓库 18/week @ 2024-06-03 • Rust 包仓库 22/week @ 2024-06-10 • Rust 包仓库 12/week @ 2024-06-17 • Rust 包仓库 23/week @ 2024-06-24 • Rust 包仓库

57 每月下载量
用于 4 crates

MIT 许可证

3KB

hmap

此包提供简单的 hashmap 创建,示例

#[macro_use]extern crate hmap;

fn main() {
    //generates HashMap<&'static str,i32>
    let hash_map = hmap!("one" => 1,"two" => 2);
}

无运行时依赖