(Collection<? extends T> collection)
| 45 | } |
| 46 | |
| 47 | public boolean addAll(Collection<? extends T> collection) { |
| 48 | boolean change = false; |
| 49 | for (T t: collection) if (add(t)) change = true; |
| 50 | return change; |
| 51 | } |
| 52 | |
| 53 | public boolean remove(Object element) { |
| 54 | return map.remove(element) != Value; |