Kinetica C# API
Version 6.2.0.1
|
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... | |
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.
|
inlinestatic |
Returns the MurmurHash3_x64_128 hash, placing the result in output
Definition at line 59 of file MurMurHash3.cs.