![JAR search and dependency download from the Maven repository](/logo.png)
net.volcanite.util.Hash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of schwefel Show documentation
Show all versions of schwefel Show documentation
A dead simple RocksDB Java wrapper
package net.volcanite.util;
public final class Hash {
public static int hash32(int h) {
h += (h << 15) ^ 0xffffcd7d;
h ^= (h >>> 10);
h += (h << 3);
h ^= (h >>> 6);
h += (h << 2) + (h << 14);
return h ^ (h >>> 16);
}
private Hash() {
throw new AssertionError();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy