(&mut self, other: Self)
| 160 | /// Removes all values in another set from this one. |
| 161 | #[inline(always)] |
| 162 | pub fn remove_all(&mut self, other: Self) { |
| 163 | self.repr = self.repr.and_not(other.repr); |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | /// A helper type used for constant evaluation of enum operations. |