macron_collections/
hash_set.rs

1/// Creates a collection [HashSet](std::collections::HashSet)
2#[macro_export]
3macro_rules! hash_set {
4    ($($v:expr),* $(,)?) => {{
5        let mut set = ::std::collections::HashSet::new();
6        $(set.insert($v);)*
7        set
8    }};
9}