(&mut self, other: impl Into<Self>)
| 183 | /// Removes all values in another set from this one. |
| 184 | #[inline(always)] |
| 185 | pub fn remove_all(&mut self, other: impl Into<Self>) { |
| 186 | self.repr = self.repr.and_not(other.into().repr); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | set_common_impls!(MixedEnumSet, EnumSetTypeWithRepr); |