Click or drag to resize
Murmur3 Class
A Murmur3 implementation in .NET that doesn't suck. Imported from https://github.com/markedup-mobi/openmetrics This is a C# port of the canonical algorithm in C++, with some helper functions designed to make it easier to work with POCOs and .NET primitives.
Inheritance Hierarchy
SystemObject
  Akka.UtilMurmur3

Namespace: Akka.Util
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public static class Murmur3

The Murmur3 type exposes the following members.

Methods
  NameDescription
Public methodStatic memberHash
Pass a .NET object to the function and get a 32-bit Murmur3 hash in return.
Public methodStatic memberHash_X64_128
Compute a 128-bit Murmur3 hash for an X64 system.
Public methodStatic memberHash_X86_32
Compute a 32-bit Murmur3 hash for an X86 system.
Public methodStatic memberHashBytes
Pass a .NET object to the function and get a 32-bit Murmur3 hash in return.
Public methodStatic memberHashString
Pass a .NET String to the function and get a 32-bit Murmur3 hash in return.
Top
See Also