(&mut self, other: impl Into<Self>)
| 177 | /// Adds all elements in another set to this one. |
| 178 | #[inline(always)] |
| 179 | pub fn insert_all(&mut self, other: impl Into<Self>) { |
| 180 | self.repr = self.repr | other.into().repr |
| 181 | } |
| 182 | |
| 183 | /// Removes all values in another set from this one. |
| 184 | #[inline(always)] |