(mut x: u64)
| 58 | } |
| 59 | |
| 60 | pub const fn mix64(mut x: u64) -> u64 { |
| 61 | x ^= x >> 30; |
| 62 | x = x.wrapping_mul(0xBF58476D1CE4E5B9); |
| 63 | x ^= x >> 27; |
| 64 | x = x.wrapping_mul(0x94D049BB133111EB); |
| 65 | x ^= x >> 31; |
| 66 | x |
| 67 | } |
| 68 | |
| 69 | /// Error returned when a generational ID string has invalid hex syntax. |
| 70 | #[derive(Clone, Copy, Debug, PartialEq, Eq)] |
no outgoing calls
no test coverage detected