(x: u32, y: u32, z: u32)
| 78 | |
| 79 | #[inline] |
| 80 | pub const fn hash3_u32(x: u32, y: u32, z: u32) -> u32 { |
| 81 | hash_combine3(hash_u32(x), hash_u32(y), hash_u32(z)) |
| 82 | } |
| 83 | |
| 84 | #[inline] |
| 85 | pub const fn hash64_u64(mut value: u64) -> u64 { |
nothing calls this directly
no test coverage detected