singlemap 1.1.1

rust single map a macro
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# singlemap
rust singlemap 


```rust
#[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);
}
```