/** {@inheritDoc} */ public boolean containsAll(TCharCollection collection) { TCharIterator iter = collection.iterator(); while (iter.hasNext()) { if (!TDoubleCharHashMap.this.containsValue(iter.next())) { return false; } } return true; }
/** {@inheritDoc} */ @Override public boolean containsAll(TCharCollection collection) { TCharIterator iter = collection.iterator(); while (iter.hasNext()) { if (!TCharCharOffheapHashMap.this.containsKey(iter.next())) { return false; } } return true; }
/** {@inheritDoc} */ public boolean removeAll(TCharCollection collection) { if (this == collection) { clear(); return true; } boolean changed = false; TCharIterator iter = collection.iterator(); while (iter.hasNext()) { char element = iter.next(); if (remove(element)) { changed = true; } } return changed; }