(self, name: &[u8])
| 47 | /// Otherwise, the element does not have this class. |
| 48 | #[inline] |
| 49 | fn might_have_class(self, name: &[u8]) -> bool { |
| 50 | let hash = hash_class_name(name); |
| 51 | self.might_contain_hash(hash) |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | const KEY_SIZE: usize = 32; |
no test coverage detected