(&self)
| 992 | |
| 993 | #[inline] |
| 994 | pub fn to_ascii_uppercase(&self) -> Wtf8Buf { |
| 995 | Wtf8Buf { |
| 996 | bytes: self.bytes.to_ascii_uppercase(), |
| 997 | } |
| 998 | } |
| 999 | |
| 1000 | pub fn to_lowercase(&self) -> Wtf8Buf { |
| 1001 | let mut buf = Wtf8Buf::with_capacity(self.len()); |
no outgoing calls
no test coverage detected