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

io.polaris.core.hash.Hash32 Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.hash;

/**
 * @author Qt
 * @since  Aug 01, 2023
 */
@FunctionalInterface
public interface Hash32 extends Hash {
	/**
	 * 计算Hash值
	 *
	 * @param t 对象
	 * @return hash
	 */
	int hash32(T t);

	@Override
	default Number hash(T t) {
		return hash32(t);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy