Murmur3..::..Hash_X86_32 Method

Compute a 32-bit Murmur3 hash for an X86 system.

Namespace:  Akka.Util
Assembly:  Akka (in Akka.dll)

Syntax


public 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
)

Parameters

data
Type: array<Byte>[]()[][]
The data that needs to be hashed
length
Type: Int32
The length of the data being hashed
seed
Type: UInt32
A seed value used to compute the hash

Return Value

A computed hash value, as a signed integer.