com.github.jnthnclt.os.lab.collections.oh.OHasher Maven / Gradle / Ivy
package com.github.jnthnclt.os.lab.collections.oh;
/**
* @author jonathan.colt
*/
public interface OHasher {
OHasher SINGLETON = key -> key.hashCode();
int hashCode(K key);
}