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

com.github.panhongan.util.hash.SimplePartitioner Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package com.github.panhongan.util.hash;


public class SimplePartitioner {
	
	public static int partition(String str, int mod) {
		return (SimpleHash.hash(str) & Integer.MAX_VALUE) % mod;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy