(&mut self, other: Self)
| 154 | /// Adds all elements in another set to this one. |
| 155 | #[inline(always)] |
| 156 | pub fn insert_all(&mut self, other: Self) { |
| 157 | self.repr = self.repr | other.repr |
| 158 | } |
| 159 | |
| 160 | /// Removes all values in another set from this one. |
| 161 | #[inline(always)] |
no outgoing calls