Uses of Class
gnu.kawa.util.HashNode

Packages that use HashNode
gnu.kawa.util   
 

Uses of HashNode in gnu.kawa.util
 

Fields in gnu.kawa.util declared as HashNode
 HashNode<K,V> HashNode.next
           
 

Methods in gnu.kawa.util that return HashNode
protected  HashNode<K,V>[] GeneralHashTable.allocEntries(int n)
           
protected  HashNode<K,V> GeneralHashTable.getEntryNext(HashNode<K,V> entry)
           
 HashNode<K,V> GeneralHashTable.getNode(java.lang.Object key)
          This override helps Kawa type-inference - for example in srfi69.scm.
protected  HashNode<K,V> GeneralHashTable.makeEntry(K key, int hash, V value)
          Allocate a new node in the hash table.
 

Methods in gnu.kawa.util with parameters of type HashNode
protected  int GeneralHashTable.getEntryHashCode(HashNode<K,V> entry)
           
protected  HashNode<K,V> GeneralHashTable.getEntryNext(HashNode<K,V> entry)
           
protected  void GeneralHashTable.setEntryNext(HashNode<K,V> entry, HashNode<K,V> next)
           
protected  void GeneralHashTable.setEntryNext(HashNode<K,V> entry, HashNode<K,V> next)