| MurmurHashExtendHash Method |
Incorporates a new value into an existing hash
Namespace:
Akka.Util
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static uint ExtendHash(
uint hash,
uint value,
uint magicA,
uint magicB
)
static member ExtendHash :
hash : uint32 *
value : uint32 *
magicA : uint32 *
magicB : uint32 -> uint32
Parameters
- hash
- Type: SystemUInt32
The prior hash value - value
- Type: SystemUInt32
The new value to incorporate - magicA
- Type: SystemUInt32
A magic integer from the left of the stream - magicB
- Type: SystemUInt32
A magic integer from a different stream
Return Value
Type:
UInt32The updated hash value
See Also