Uses of Class
data_structures.DHashTable

Packages that use DHashTable
data_structures Stuff here. 
 

Uses of DHashTable in data_structures
 

Methods in data_structures that return DHashTable
 DHashTable<K,V> DHashTable.add(K[] keys, V[] values)
          Add multiple key/value mappings to the dynamic hash table.
 DHashTable<K,V> DHashTable.add(K key, V value)
          Add a key/value mapping to the dynamic hash table.
 DHashTable<K,V> DHashTable.addEquals(K[] keys, V[] values)
          Add multiple key/value mappings to the dynamic hash table.
 DHashTable<K,V> DHashTable.addEquals(K key, V value)
          Add a key/value mapping to the dynamic hash table.
 DHashTable<K,V> DHashTable.clone()
          Return a deep copy of the dynamic hash table.
 DHashTable<K,V> DHashTable.remove(K key)
          Remove a key/value mapping from the dynamic hash table.
 DHashTable<K,V> DHashTable.remove(K[] keys)
          Remove multiple key/value mappings from the dynamic hash table.
 DHashTable<K,V> DHashTable.removeEquals(K key)
          Remove a key/value mapping from the dynamic hash table.
 DHashTable<K,V> DHashTable.removeEquals(K[] keys)
          Remove multiple key/value mappings from the dynamic hash table.