| Crates.io | hmap |
| lib.rs | hmap |
| version | 0.1.0 |
| created_at | 2018-09-07 17:50:41.071103+00 |
| updated_at | 2018-09-07 17:50:41.071103+00 |
| description | Adds hmap! macro for easily generate HashMap |
| homepage | |
| repository | https://github.com/playXE/hmap |
| max_upload_size | |
| id | 83477 |
| size | 3,238 |
This crate provides simple hashmap creation, example:
#[macro_use]extern crate hmap;
fn main() {
//generates HashMap<&'static str,i32>
let hash_map = hmap!("one" => 1,"two" => 2);
}