(&mut self, other: &Wtf8)
| 471 | /// Append a WTF-8 slice at the end of the string. |
| 472 | #[inline] |
| 473 | pub fn push_wtf8(&mut self, other: &Wtf8) { |
| 474 | self.bytes.extend_from_slice(&other.bytes); |
| 475 | } |
| 476 | |
| 477 | /// Append a Unicode scalar value at the end of the string. |
| 478 | #[inline] |
no outgoing calls
no test coverage detected