/** {@inheritDoc} */ public boolean containsAll(TFloatCollection collection) { TFloatIterator iter = collection.iterator(); while (iter.hasNext()) { if (!TLongFloatHashMap.this.containsValue(iter.next())) { return false; } } return true; }
/** {@inheritDoc} */ @SuppressWarnings({"SuspiciousMethodCalls"}) public boolean retainAll(Collection<?> collection) { boolean modified = false; TFloatIterator iter = iterator(); while (iter.hasNext()) { if (!collection.contains(Float.valueOf(iter.next()))) { iter.remove(); modified = true; } } return modified; }
/** {@inheritDoc} */ public boolean retainAll(TFloatCollection collection) { if (this == collection) { return false; } boolean modified = false; TFloatIterator iter = iterator(); while (iter.hasNext()) { if (!collection.contains(iter.next())) { iter.remove(); modified = true; } } return modified; }
/** {@inheritDoc} */ public boolean removeAll(TFloatCollection collection) { if (this == collection) { clear(); return true; } boolean changed = false; TFloatIterator iter = collection.iterator(); while (iter.hasNext()) { float element = iter.next(); if (remove(element)) { changed = true; } } return changed; }