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