hashset

Macro hashset 

Source
macro_rules! hashset {
    (@single $($x:tt)*) => { ... };
    (@count $($rest:expr),*) => { ... };
    ($($key:expr,)+) => { ... };
    ($($key:expr),*) => { ... };
}
Expand description

Create a HashSet from a list of elements.