(value: u64)
| 34 | |
| 35 | #[inline] |
| 36 | pub const fn hash_u64(value: u64) -> u32 { |
| 37 | let lower = value as u32; |
| 38 | let upper = (value >> 32) as u32; |
| 39 | hash_u32(lower ^ hash_u32(upper)) |
| 40 | } |
| 41 | |
| 42 | #[inline] |
| 43 | pub const fn hash_i64(value: i64) -> u32 { |
no test coverage detected