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

com.jchanghong.core.lang.hash.Hash128 Maven / Gradle / Ivy

The newest version!
package com.jchanghong.core.lang.hash;

/**
 * Hash计算接口
 *
 * @param  被计算hash的对象类型
 * @author looly
 * @since 5.2.5
 */
@FunctionalInterface
public interface Hash128 {
	/**
	 * 计算Hash值
	 *
	 * @param t 对象
	 * @return hash
	 */
	Number128 hash128(T t);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy