logo
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.

Required Methods

👎 Deprecated since 0.3.1:

use FloatHash::float_hash instead

Provided Methods

Implementations on Foreign Types

👎 Deprecated since 0.3.1:

use FloatHash::float_hash instead

Implementors