(&self, other: &Self)
| 1031 | |
| 1032 | #[inline] |
| 1033 | pub fn eq_ignore_ascii_case(&self, other: &Self) -> bool { |
| 1034 | self.bytes.eq_ignore_ascii_case(&other.bytes) |
| 1035 | } |
| 1036 | |
| 1037 | pub fn split(&self, pat: &Wtf8) -> impl Iterator<Item = &Self> { |
| 1038 | self.as_bytes() |
no outgoing calls
no test coverage detected