Murmur3Hash_X86_32 Method |
Compute a 32-bit Murmur3 hash for an X86 system.
Namespace: Akka.UtilAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static int Hash_X86_32(
byte[] data,
int length,
uint seed
)
Public Shared Function Hash_X86_32 (
data As Byte(),
length As Integer,
seed As UInteger
) As Integer
public:
static int Hash_X86_32(
array<unsigned char>^ data,
int length,
unsigned int seed
)
static member Hash_X86_32 :
data : byte[] *
length : int *
seed : uint32 -> int
Parameters
- data
- Type: SystemByte
The data that needs to be hashed - length
- Type: SystemInt32
The length of the data being hashed - seed
- Type: SystemUInt32
A seed value used to compute the hash
Return Value
Type:
Int32A computed hash value, as a signed integer.
See Also