All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.volcanite.util.Hash Maven / Gradle / Ivy

There is a newer version: 9.7.3.1
Show newest version
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