pub trait FloatHash {
fn hash<H>(&self, state: &mut H)
where
H: Hasher;
fn float_hash<H>(&self, state: &mut H)
where
H: Hasher,
{ ... }
}
Expand description
Hashing for primitive floating-point values.
pub trait FloatHash {
fn hash<H>(&self, state: &mut H)
where
H: Hasher;
fn float_hash<H>(&self, state: &mut H)
where
H: Hasher,
{ ... }
}
Hashing for primitive floating-point values.