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
38
39
40
41
42
43
44
45
/// Convenience macro to create a `HashMap` from a predfined set of key - value pairs
///
/// # Example
/// ```
/// let map = hash_map! {
/// "yes" => 0.,
/// "no" => 1.,
/// "pi" => std::f64::consts::PI
/// };
///
/// for (key, val) in map.iter() {
/// println!("Key: {key}, Value: {val}");
/// }
/// ```
/// Convenience macro for generating a test module from a set of functions
///
/// It also pre-imports everything from the outer module
}
}