-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
330e993
commit 607efe9
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
murmur3 | ||
======= | ||
|
||
Murmurhash3 wrapper in Nimrod. Currently simply provides a wrapper for MurmurHash3_x64_128 for string inputs. MurmurHash was written by Austin Appleby and released into the public domain. | ||
|
||
This module implements a `MurmurHashes` type, which is simply a 2 item array of signed 64-bit integers, and one hashing method (strings only at the moment): | ||
```nimrod | ||
proc murmur_hash*(key: string, seed: uint32 = 0'u32): MurmurHashes = | ||
``` |