#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

#1274 in Rust patterns

Download history 233/week @ 2024-01-05 201/week @ 2024-01-12 186/week @ 2024-01-19 231/week @ 2024-01-26 270/week @ 2024-02-02 160/week @ 2024-02-09 200/week @ 2024-02-16 148/week @ 2024-02-23 379/week @ 2024-03-01 525/week @ 2024-03-08 201/week @ 2024-03-15 213/week @ 2024-03-22 253/week @ 2024-03-29 248/week @ 2024-04-05 266/week @ 2024-04-12 216/week @ 2024-04-19

1,030 downloads per month
Used in 5 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