Interface HashingMap<K,​V>

    • Nested Class Summary

      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Map<K,​V> removeAllWithHash​(int keyHash)
      Remove all keys having a specific hashcode.
      • Methods inherited from interface java.util.Map

        clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
    • Method Detail

      • removeAllWithHash

        java.util.Map<K,​V> removeAllWithHash​(int keyHash)
        Remove all keys having a specific hashcode.
        Parameters:
        keyHash - the hashcode of the keys to be removed.
        Returns:
        a Map containing the removed mappings.