| Package | Description |
|---|---|
| gnu.kawa.util | |
| gnu.text |
Supports various utility classes
for formatting, parsing, and manipulating text (strings).
|
| Modifier and Type | Field and Description |
|---|---|
HashNode<K,V> |
HashNode.next |
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and 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) |
protected void |
GeneralHashTable.setEntryNext(HashNode<K,V> entry,
HashNode<K,V> next) |
| Modifier and Type | Method and Description |
|---|---|
protected HashNode<java.lang.String,java.lang.String> |
NamedCharTable.makeEntry(java.lang.String key,
int hash,
java.lang.String value) |