std_macro_extensions/hash_set/
macro.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
/// Creates a new `HashSet` instance.
///
/// This macro can be used in two forms:
/// - Without arguments, it creates an empty `HashSet`.
/// - With elements, it creates a `HashSet` and inserts the provided elements into it.
///
/// # Examples
/// Creating an empty `HashSet`:
/// ```
/// use std_macro_extensions::*;
/// let my_set: HashSet<i32> = hash_set!();
/// ```
///
/// Creating a `HashSet` with elements:
/// ```
/// use std_macro_extensions::*;
/// let my_set = hash_set!(1, 2, 3);
/// ```
#[macro_export]
macro_rules! hash_set {
    () => {
        std::collections::HashSet::new()
    };
    ($($elem:expr),*) => {{
        let mut set = std::collections::HashSet::new();
        $( set.insert($elem); )*
        set
    }};
}