(&mut self, rhs: Self)
| 250 | { |
| 251 | #[inline] |
| 252 | fn bitor_assign(&mut self, rhs: Self) { |
| 253 | self.storage |
| 254 | .iter_mut() |
| 255 | .zip(&rhs.storage) |
| 256 | .for_each(|(word, other)| *word |= *other); |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | impl<T, W, const N: usize> Extend<T> for SmallEntitySet<T, W, N> |