Skip to content

mistweaverco/go-murmur

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

go-murmur

Go Package for MurmurHash2

Example

package main

import (
	mm "github.com/mistweaverco/go-murmur/murmur2"
)

func main() {
	h := mm.MurmurHash2([]byte("hello"), 1)
	println(h) // prints 2788266382
}