1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use ;
/// Check if a hashmap is equal to another hashmap
///
/// # Example:
/// ```rust
/// use r_unit::map;
///
/// let hashmap: HashMap<&str, i32> = HashMap::new();
/// let hashmap2: HashMap<&str, i32> = HashMap::new();
///
/// assert!(map::map_equals(&hashmap, &hashmap2));
/// ```
/// Check if a hashmap is empty
///
/// # Example:
/// ```rust
/// use r_unit::map;
///
/// let hashmap: HashMap<&str, i32> = HashMap::new();
/// assert!(map::is_empty(&hashmap));
/// ```