(self, other: &InternedString<'gc>)
| 183 | impl<'gc> InternedString<'gc> { |
| 184 | #[inline] |
| 185 | pub fn equals(self, other: &InternedString<'gc>) -> bool { |
| 186 | self.stored_hash() == other.stored_hash() && self.as_bytes() == other.as_bytes() |
| 187 | } |
| 188 | |
| 189 | pub fn len(self) -> i64 { |
| 190 | self.as_bytes().len().try_into().unwrap() |
no test coverage detected