(&mut self, c: char)
| 477 | /// Append a Unicode scalar value at the end of the string. |
| 478 | #[inline] |
| 479 | pub fn push_char(&mut self, c: char) { |
| 480 | self.push(CodePoint::from_char(c)) |
| 481 | } |
| 482 | |
| 483 | /// Append a code point at the end of the string. |
| 484 | #[inline] |
no test coverage detected