/** {@inheritDoc} */ public boolean containsAll(TIntCollection collection) { TIntIterator iter = collection.iterator(); while (iter.hasNext()) { if (!TIntIntHashMap.this.containsValue(iter.next())) { return false; } } return true; }
/** {@inheritDoc} */ public boolean removeAll(TIntCollection collection) { if (this == collection) { clear(); return true; } boolean changed = false; TIntIterator iter = collection.iterator(); while (iter.hasNext()) { int element = iter.next(); if (remove(element)) { changed = true; } } return changed; }