| Crates.io | singlemap |
| lib.rs | singlemap |
| version | 1.1.1 |
| created_at | 2022-01-24 02:03:17.362255+00 |
| updated_at | 2025-08-24 11:49:45.021042+00 |
| description | rust single map a macro |
| homepage | |
| repository | |
| max_upload_size | |
| id | 519955 |
| size | 14,602 |
rust singlemap
#[macro_use]
extern crate singlemap;
#[test]
fn test_map(){
single_push!("a",Box::new("aaaa".to_string()));
let straa = single_get_unwrap!("a",String);
println!("rustl:{:?}",straa);
}