(K key, V value)
| 131 | } |
| 132 | |
| 133 | private Cell<K, V> putCell(K key, V value) { |
| 134 | Cell<K, V> c = find(key); |
| 135 | if (c == null) { |
| 136 | insert(helper.make(key, value, null)); |
| 137 | } else { |
| 138 | c.setValue(value); |
| 139 | } |
| 140 | return c; |
| 141 | } |
| 142 | |
| 143 | public boolean containsKey(Object key) { |
| 144 | return find(key) != null; |