(&self)
| 1059 | } |
| 1060 | |
| 1061 | pub fn trim(&self) -> &Self { |
| 1062 | let w = self.bytes.trim(); |
| 1063 | unsafe { Wtf8::from_bytes_unchecked(w) } |
| 1064 | } |
| 1065 | |
| 1066 | pub fn trim_start(&self) -> &Self { |
| 1067 | let w = self.bytes.trim_start(); |
no outgoing calls
no test coverage detected