Ejemplo n.º 1
0
 /** {@inheritDoc} */
 public boolean retainAll(TCharCollection collection) {
   if (this == collection) {
     return false;
   }
   boolean modified = false;
   TCharIterator iter = iterator();
   while (iter.hasNext()) {
     if (!collection.contains(iter.next())) {
       iter.remove();
       modified = true;
     }
   }
   return modified;
 }