Murmur3Hash_X64_128 Method |
Compute a 128-bit Murmur3 hash for an X64 system.
Namespace: Akka.UtilAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic 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
)
static member Hash_X64_128 :
data : byte[] *
length : int *
seed : uint32 -> uint64[]
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:
UInt64A computed hash value, as an array consisting of two unsigned long integers.
See Also