/** {@inheritDoc} */ public boolean containsAll(TShortCollection collection) { TShortIterator iter = collection.iterator(); while (iter.hasNext()) { if (!TByteShortHashMap.this.containsValue(iter.next())) { return false; } } return true; }
/** {@inheritDoc} */ public boolean containsAll(TShortCollection collection) { TShortIterator iter = collection.iterator(); while (iter.hasNext()) { short element = iter.next(); if (!contains(element)) { return false; } } return true; }
/** {@inheritDoc} */ public boolean removeAll(TShortCollection collection) { boolean changed = false; TShortIterator iter = collection.iterator(); while (iter.hasNext()) { short element = iter.next(); if (remove(element)) { changed = true; } } return changed; }