(&mut self, entity: T)
| 101 | #[inline] |
| 102 | #[track_caller] |
| 103 | pub fn remove(&mut self, entity: T) { |
| 104 | let (idx, bit) = Self::index(entity); |
| 105 | self.storage[idx] &= !(1 << bit); |
| 106 | } |
| 107 | |
| 108 | /// Adds all elements from `other` to this set. |
| 109 | /// |
no outgoing calls
no test coverage detected