bubble_bath/macros.rs
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 46 47 48 49 50 51
/// Handy macro to construct a hashmap
///
/// Example:
///
/// ```rust
/// # use bubble_bath::hashmap;
/// # use std::collections::HashMap;
/// let _: HashMap<_, HashMap<_, _>> = hashmap! [
/// "key" => hashmap![],
/// "key2" => hashmap![
/// "inner key" => "inner value",
/// ],
/// ];
/// ```
#[macro_export]
macro_rules! hashmap {
($($key:expr => $value:expr),*$(,)?) => {{
let mut hashmap = ::std::collections::HashMap::default();
$(
let _ = hashmap.insert($key, $value);
)*
hashmap
}}
}
/// Handy macro to construct a hashset
///
/// Example:
///
/// ```rust
/// # use bubble_bath::hashset;
/// # use std::collections::HashSet;
/// let _ : HashSet<_> = hashset![
/// "key1",
/// "key2",
/// "key3",
/// ];
#[macro_export]
macro_rules! hashset {
($($value:expr),*$(,)?) => {{
let mut hashset = ::std::collections::HashSet::default();
$(
let _ = hashset.insert($value);
)*
hashset
}}
}