#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

#12 in #associative

Download history 115/week @ 2024-11-14 174/week @ 2024-11-21 163/week @ 2024-11-28 198/week @ 2024-12-05 281/week @ 2024-12-12 131/week @ 2024-12-19 58/week @ 2024-12-26 144/week @ 2025-01-02 206/week @ 2025-01-09 267/week @ 2025-01-16 193/week @ 2025-01-23 192/week @ 2025-01-30 268/week @ 2025-02-06 245/week @ 2025-02-13 205/week @ 2025-02-20 165/week @ 2025-02-27

926 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