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

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

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

/**
 * Hash计算接口
 *
 * @param  被计算hash的对象类型
 * @author Qt
 * @since 1.8,  Aug 01, 2023
 */
@FunctionalInterface
public interface Hash {
	/**
	 * 计算Hash值
	 *
	 * @param t 对象
	 * @return hash
	 */
	Number hash(T t);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy