#dictionary #array #associative #real #exercise #key #dict-iface

dict

Exercise crate implementing real associative arrays, also known as dictionaries

5 releases

Uses old Rust 2015

0.1.5 Apr 17, 2018
0.1.4 Apr 17, 2018

#2426 in Rust patterns

Download history 379/week @ 2024-03-13 191/week @ 2024-03-20 273/week @ 2024-03-27 201/week @ 2024-04-03 248/week @ 2024-04-10 307/week @ 2024-04-17 157/week @ 2024-04-24 432/week @ 2024-05-01 215/week @ 2024-05-08 362/week @ 2024-05-15 215/week @ 2024-05-22 226/week @ 2024-05-29 232/week @ 2024-06-05 174/week @ 2024-06-12 217/week @ 2024-06-19 169/week @ 2024-06-26

831 downloads per month
Used in 4 crates

GPL-3.0 license

15KB

rust-dict

Crate implementing real associative arrays, also known as dictionaries.

use dict::{ Dict, DictIface };

//create a dictionary of strings
let mut dict = Dict::<String>::new();
assert_eq!( dict.is_empty(), true );
assert_eq!( dict.len(), 0 );

// add an element "val" indexed by the key "key"
assert_eq!( dict.add( "key".to_string(), "val".to_string() ), true );
assert_eq!( dict.is_empty(), false );
assert_eq!( dict.len(), 1 );

// keys must be unique
assert_eq!( dict.add( "key".to_string()      , "other_val".to_string() ), false );
assert_eq!( dict.len(), 1 );
assert_eq!( dict.add( "other_key".to_string(), "other_val".to_string() ), true );
assert_eq!( dict.len(), 2 );

// we can iterate just like an array
for o in &dict {
    println!( "{} - {}", o.key, o.val );
}
dict.iter().for_each( |o| println!( "{} - {}", o.key, o.val ) );

// we can access the value by its key string with get()
assert_eq!( dict.get( "key" ).unwrap(), "val" );
assert_eq!( dict.contains_key( "key" ), true );
assert_eq!( dict.remove_key( "key" ).unwrap(), "val" );
assert_eq!( dict.contains_key( "key" ), false );

ownyourbits.com

crates.io

No runtime deps