Lines Matching defs:BitSet
9 pub struct BitSet { struct
13 impl BitSet { argument
148 impl Default for BitSet { implementation
154 impl BitAndAssign for BitSet { implementation
155 fn bitand_assign(&mut self, rhs: BitSet) { in bitand_assign()
163 impl BitAnd<BitSet> for BitSet { implementation
166 fn bitand(self, rhs: BitSet) -> BitSet { in bitand()
173 impl BitOrAssign for BitSet { implementation
174 fn bitor_assign(&mut self, rhs: BitSet) { in bitor_assign()
182 impl BitOr<BitSet> for BitSet { implementation
185 fn bitor(self, rhs: BitSet) -> BitSet { in bitor()
192 impl BitXorAssign for BitSet { implementation
193 fn bitxor_assign(&mut self, rhs: BitSet) { in bitxor_assign()
201 impl BitXor<BitSet> for BitSet { implementation
204 fn bitxor(self, rhs: BitSet) -> BitSet { in bitxor()
211 impl Not for BitSet { implementation
214 fn not(self) -> BitSet { in not()
230 fn new(set: &'a BitSet, start: usize) -> Self { in new()