macro_rules! small_char_set {
($($e:expr)+) => { ... };
}
Expand description
Create a SmallCharSet
, with each space-separated number stored in the set.
ยงExamples
let set = small_char_set!(12 54 42);
assert_eq!(set.bits,
0b00000000_01000000_00000100_00000000_00000000_00000000_00010000_00000000);