http_type/hash_set_xx_hash3_64/fn.rs
1use crate::*;
2
3/// Creates a new `HashSetXxHash3_64` with the default hasher.
4///
5/// # Arguments
6///
7/// - `K` - The type of the elements in the hash set.
8///
9/// # Returns
10///
11/// A new `HashSetXxHash3_64` instance.
12pub fn hash_set_xx_hash3_64<K: Eq + Hash>() -> HashSetXxHash3_64<K> {
13 HashSet::with_hasher(BuildHasherDefault::default())
14}