[−][src]Macro batch_oper::set
new a HashSet<V>
set![a, b]
equivalent to
{
let mut s = HashSet::new();
s.insert(a);
s.insert(b);
s
}new a HashSet<V>
set![a, b]
equivalent to
{
let mut s = HashSet::new();
s.insert(a);
s.insert(b);
s
}