Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
kinetica.MurMurHash3 Class Reference

Usage: More...

Classes

class  LongPair
 128 bits of state More...
 

Static Public Member Functions

static void murmurhash3_x64_128 (byte[] key, uint offset, uint len, int seed, out LongPair output)
 Returns the MurmurHash3_x64_128 hash, placing the result in output More...
 

Detailed Description

Usage:

MurMurHash3.LongPair murmur = new MurMurHash3.LongPair(); System.Text.Encoding encoding = new System.Text.UTF8Encoding(); byte[] input = encoding.GetBytes( value ); MurMurHash3.murmurhash3_x64_128( input, 0, (uint)input.Length, 10, out murmur ); // Use the values as murmur.val1 and murmur.val2

Definition at line 23 of file MurMurHash3.cs.

Member Function Documentation

static void kinetica.MurMurHash3.murmurhash3_x64_128 ( byte[]  key,
uint  offset,
uint  len,
int  seed,
out LongPair  output 
)
inlinestatic

Returns the MurmurHash3_x64_128 hash, placing the result in output

Definition at line 59 of file MurMurHash3.cs.


The documentation for this class was generated from the following file: