io.polaris.core.hash.Hash Maven / Gradle / Ivy
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);
}