HashProvider.java

Source Code

public interface HashProvider<K> {
    int hashKey(K key, int tableSize);
}

Last updated