We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Clone
FxHasher
1 parent 5e09ea0 commit 4ac16fbCopy full SHA for 4ac16fb
src/lib.rs
@@ -57,6 +57,7 @@ pub type FxHashSet<V> = HashSet<V, BuildHasherDefault<FxHasher>>;
57
/// out-performs an FNV-based hash within rustc itself -- the collision rate is
58
/// similar or slightly worse than FNV, but the speed of the hash function
59
/// itself is much higher because it works on up to 8 bytes at a time.
60
+#[derive(Clone)]
61
pub struct FxHasher {
62
hash: usize,
63
}
0 commit comments