(Map<? extends K, ? extends V> map)
| 91 | } |
| 92 | |
| 93 | public void putAll(Map<? extends K, ? extends V> map){ |
| 94 | for(Iterator i = map.entrySet().iterator(); i.hasNext();) |
| 95 | { |
| 96 | Entry<K, V> e = (Entry) i.next(); |
| 97 | put(e.getKey(), e.getValue()); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | public void clear(){ |
| 102 | for(int i = 0; i < bins.length; i++) |