(name: &[u8])
| 126 | |
| 127 | #[inline] |
| 128 | pub(crate) fn hash_class_name(name: &[u8]) -> u64 { |
| 129 | let mut hasher = FxHasher::default(); |
| 130 | name.hash(&mut hasher); |
| 131 | hasher.finish() |
| 132 | } |
| 133 | |
| 134 | /// A collection of HTML attributes. |
| 135 | #[derive(Debug)] |
no test coverage detected