(self)
| 222 | |
| 223 | #[inline] |
| 224 | fn not(self) -> Self::Output { |
| 225 | Self { |
| 226 | storage: array::from_fn(|idx| !self.storage[idx]), |
| 227 | marker: PhantomData, |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | impl<T, W, const N: usize> ops::BitAndAssign for SmallEntitySet<T, W, N> |
nothing calls this directly
no outgoing calls
no test coverage detected