(&mut self, c: char)
| 344 | /// This function assumes the character is in the ASCII range. |
| 345 | #[inline] |
| 346 | pub fn add(&mut self, c: char) { |
| 347 | self.add_u8(c as u8); |
| 348 | } |
| 349 | |
| 350 | /// Inverts the bit-set so that all set bits become unset and vice versa. |
| 351 | #[inline] |
no test coverage detected