(&mut self, i: u8)
| 322 | /// ``` |
| 323 | #[inline] |
| 324 | pub fn remove(&mut self, i: u8) -> bool { |
| 325 | let was_present = self.contains(i); |
| 326 | self.0 = self.0 & !(T::from(1) << i); |
| 327 | was_present |
| 328 | } |
| 329 | |
| 330 | /// Remove all entries from this bitset. |
| 331 | /// |