/** {@inheritDoc} */
 public boolean containsAll(TDoubleCollection collection) {
   TDoubleIterator iter = collection.iterator();
   while (iter.hasNext()) {
     if (!TDoubleIntHashMap.this.containsKey(iter.next())) {
       return false;
     }
   }
   return true;
 }
 /** {@inheritDoc} */
 @SuppressWarnings({"SuspiciousMethodCalls"})
 public boolean retainAll(Collection<?> collection) {
   boolean modified = false;
   TDoubleIterator iter = iterator();
   while (iter.hasNext()) {
     if (!collection.contains(Double.valueOf(iter.next()))) {
       iter.remove();
       modified = true;
     }
   }
   return modified;
 }
 /** {@inheritDoc} */
 public boolean retainAll(TDoubleCollection collection) {
   if (this == collection) {
     return false;
   }
   boolean modified = false;
   TDoubleIterator iter = iterator();
   while (iter.hasNext()) {
     if (!collection.contains(iter.next())) {
       iter.remove();
       modified = true;
     }
   }
   return modified;
 }
 /** {@inheritDoc} */
 public boolean removeAll(TDoubleCollection collection) {
   if (this == collection) {
     clear();
     return true;
   }
   boolean changed = false;
   TDoubleIterator iter = collection.iterator();
   while (iter.hasNext()) {
     double element = iter.next();
     if (remove(element)) {
       changed = true;
     }
   }
   return changed;
 }