(a: u32, b: u32, c: u32)
| 63 | |
| 64 | #[inline] |
| 65 | pub const fn hash_combine3(a: u32, b: u32, c: u32) -> u32 { |
| 66 | hash_combine(hash_combine(a, b), c) |
| 67 | } |
| 68 | |
| 69 | #[inline] |
| 70 | pub const fn hash_combine4(a: u32, b: u32, c: u32, d: u32) -> u32 { |
no test coverage detected