K
- V
- public class FastHashMap<K,V> extends java.lang.Object implements java.lang.Iterable<FastHashMap.Entry<K,V>>
Modifier and Type | Class and Description |
---|---|
static class |
FastHashMap.Entry<K,V> |
Constructor and Description |
---|
FastHashMap() |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(K k) |
V |
get(K k) |
java.util.Iterator<FastHashMap.Entry<K,V>> |
iterator() |
V |
put(K k,
V v) |
void |
remove(K k) |
public void clear()
public boolean containsKey(K k)
public void remove(K k)
public java.util.Iterator<FastHashMap.Entry<K,V>> iterator()
iterator
in interface java.lang.Iterable<FastHashMap.Entry<K,V>>