/** {@inheritDoc} */ public boolean containsAll(TShortCollection collection) { TShortIterator iter = collection.iterator(); while (iter.hasNext()) { if (!TByteShortHashMap.this.containsValue(iter.next())) { return false; } } return true; }
/** {@inheritDoc} */ @SuppressWarnings({"SuspiciousMethodCalls"}) public boolean retainAll(Collection<?> collection) { boolean modified = false; TShortIterator iter = iterator(); while (iter.hasNext()) { if (!collection.contains(Short.valueOf(iter.next()))) { iter.remove(); modified = true; } } return modified; }
/** {@inheritDoc} */ @Override public boolean addAll(TShortCollection collection) { boolean changed = false; TShortIterator iter = collection.iterator(); while (iter.hasNext()) { short element = iter.next(); if (add(element)) { changed = true; } } return changed; }
/** {@inheritDoc} */ public boolean retainAll(TShortCollection collection) { if (this == collection) { return false; } boolean modified = false; TShortIterator iter = iterator(); while (iter.hasNext()) { if (!collection.contains(iter.next())) { iter.remove(); modified = true; } } return modified; }
/** {@inheritDoc} */ public boolean removeAll(TShortCollection collection) { if (this == collection) { clear(); return true; } boolean changed = false; TShortIterator iter = collection.iterator(); while (iter.hasNext()) { short element = iter.next(); if (remove(element)) { changed = true; } } return changed; }