pub fn hash_map_stripped<'a, K, V, H>(
    map: impl IntoIterator<Item = (&'a K, &'a V)> + 'a,
    hasher: &mut H
)where
    K: 'a + Hash,
    V: 'a + StrippedHash,
    H: Hasher,