rust dictionary type

impl indexmap to deal with the key-value type

example

add this line to Cargo.toml

toml dictionary_rs = "0.1.0"

fromitermain.rs

```rust extern crate dictionary_rs as dictionary; use dictionary::Dictionary;

fn main() { let tuples: Vec<(u8, u8)> = vec![(1, 3), (5, 7)]; let d: Dictionary = Dictionary::fromiter(tuples.iter()); let tuplesarray: Vec<(u8, [u8; 5])> = vec![(2, [3, 4, 5, 6, 7]),(8,[9,10,11,12,13])]; let _darray: Dictionaryiter(tuplesarray.iter());

println!("{}",*_d.get(&5).unwrap());
println!("{:?}",*_d_array.get(&8).unwrap());

} ```

insert.rs

```rust extern crate dictionary_rs as dictionary; use dictionary::Dictionary; fn main() { let mut _d: Dictionary = Dictionary::new(); _d.insert(1, 2); _d.insert(3, 4);

println!("{}", *_d.get(&3).unwrap());

} ```