Uses of Class
gnu.kawa.util.HashNode
-
Packages that use HashNode Package Description gnu.kawa.util gnu.text Supports various utility classes for formatting, parsing, and manipulating text (strings). -
-
Uses of HashNode in gnu.kawa.util
Fields in gnu.kawa.util declared as HashNode Modifier and Type Field Description HashNode<K,V>
HashNode. next
Methods in gnu.kawa.util that return HashNode Modifier and Type Method Description protected HashNode<K,V>[]
GeneralHashTable. allocEntries(int n)
protected HashNode<K,V>
GeneralHashTable. getEntryNext(HashNode<K,V> entry)
HashNode<K,V>
GeneralHashTable. getNode(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 Modifier and Type Method Description 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)
-
Uses of HashNode in gnu.text
Methods in gnu.text that return HashNode Modifier and Type Method Description protected HashNode<String,String>
NamedCharTable. makeEntry(String key, int hash, String value)
-