Watch
2
0
Fork
You've already forked jmurmur
0
Murmur hash function
  • Java 99.4%
  • CSS 0.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Mark Raynsford b8eefa94c1
Some checks are pending
main-RHEL10-x86_64-jdk25 / Build (push) Waiting to run
main-RHEL10-x86_64-jdk26 / Build (push) Waiting to run
main-RHEL9-x86_64-jdk25 / Build (push) Waiting to run
main-RHEL9-x86_64-jdk26 / Build (push) Waiting to run
Update workflows.
2026-07-31 18:42:55 +01:00
.forgejo Update workflows. 2026-07-31 18:42:55 +01:00
com.io7m.jmurmur.core Begin next development iteration. 2024-05-16 17:09:01 +00:00
com.io7m.jmurmur.tests Begin next development iteration. 2024-05-16 17:09:01 +00:00
src/site/resources Update site metadata. 2025-08-09 15:06:04 +00:00
.gitignore Update .gitignore. 2024-05-07 16:01:43 +00:00
.gitmodules Move to new organization. 2024-04-30 19:12:33 +00:00
doc7m-books.json Add doc7m-books.json 2026-07-31 18:36:46 +01:00
pom.xml Migrate project. 2026-06-27 10:10:01 +01:00
README-CHANGES.xml Mark release 3.0.0 2024-05-16 17:08:51 +00:00
README-LICENSE.txt Update LICENSE 2023-08-13 21:07:24 +00:00
README.in Migrate project. 2026-06-27 10:10:01 +01:00
README.md Migrate project. 2026-06-27 10:10:01 +01:00

jmurmur

Maven Central Maven Central (snapshot) Java Version

com.io7m.jmurmur

jmurmur

A Java implementation of the Murmur3 hash function.

Features

Usage

var a = Murmur3.hashInt(23);
var b = Murmur3.hashIntWithSeed(300, 81238);
var c = Murmur3.hashLong(23L);
var d = Murmur3.hashLongWithSeed(300L, 81238L);