(K key, V value, Cell<K, V> next)
| 309 | |
| 310 | static class MyHelper<K, V> implements Helper<K, V> { |
| 311 | public Cell<K, V> make(K key, V value, Cell<K, V> next) { |
| 312 | return new MyCell(key, value, next, hash(key)); |
| 313 | } |
| 314 | |
| 315 | public int hash(K a) { |
| 316 | return (a == null ? 0 : a.hashCode()); |