(&mut self, entity: T)
| 93 | #[inline] |
| 94 | #[track_caller] |
| 95 | pub fn insert(&mut self, entity: T) { |
| 96 | let (idx, bit) = Self::index(entity); |
| 97 | self.storage[idx] |= 1 << bit; |
| 98 | } |
| 99 | |
| 100 | /// Removes an element from the set. |
| 101 | #[inline] |
no outgoing calls
no test coverage detected