pub macro hashset { ($($value:expr,)+) => { ... }, ($($value:expr),*) => { ... }, }
Creates a HashSet object from a list of values.
HashSet
use rialight::util::hashset; assert!(hashset!{"foo"}.contains("foo"));