Multiply and xor mix function.
Declared in <folly/external/rapidhash/rapidhash.h>
constexpr
uint64_t
rapidhash_mix(
uint64_t A,
uint64_t B) noexcept;
Calculates the 128-bit product C = A * B.
The 64-bit xor between the high and low 64 bits of C.
| Name | Description |
|---|---|
| A | 64-bit number. |
| B | 64-bit number. |