
* Move egui/util/float_ord.rs -> epaint/util/ordered_float.rs * Implement Hash on OrderedFloat * Generic OrderedFloat<T>; impl Hash; documentation
19 lines
505 B
Rust
19 lines
505 B
Rust
mod ordered_float;
|
|
|
|
pub use ordered_float::*;
|
|
|
|
/// Hash the given value with a predictable hasher.
|
|
#[inline]
|
|
pub fn hash(value: impl std::hash::Hash) -> u64 {
|
|
use std::hash::Hasher as _;
|
|
let mut hasher = ahash::AHasher::new_with_keys(123, 456);
|
|
value.hash(&mut hasher);
|
|
hasher.finish()
|
|
}
|
|
|
|
/// Hash the given value with the given hasher.
|
|
#[inline]
|
|
pub fn hash_with(value: impl std::hash::Hash, mut hasher: impl std::hash::Hasher) -> u64 {
|
|
value.hash(&mut hasher);
|
|
hasher.finish()
|
|
}
|