Murmur3..::..Hash_X64_128 Method

Compute a 128-bit Murmur3 hash for an X64 system.

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

Syntax


public static ulong[] Hash_X64_128(
	byte[] data,
	int length,
	uint seed
)
Public Shared Function Hash_X64_128 ( _
	data As Byte(), _
	length As Integer, _
	seed As UInteger _
) As ULong()
public:
static array<unsigned long long^>^ Hash_X64_128(
	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 an array consisting of two unsigned long integers.