nimrod-murmur

October 30, 2013 ยท View on GitHub

MurmurHash algorithm in pure nimrod.

Install

$ babel install murmur

Example

import murmur

echo(murmur.hash("digest this text", 0xbadc0ffee'i32))
# => 2419875762

Documentation

hash(key: string, seed: int32 = 0): uint32

Compute the murmur hash of key with seed seed.

Acknowledgements

This module is a port of murmurhash-js.

Contents

  1. 1Install
  2. 2Example
  3. 3Documentation
  4. 3.1hash(key: string, seed: int32 = 0): uint32
  5. 4Acknowledgements