コード例 #1
0
 /** {@inheritDoc} */
 public boolean containsAll(TByteCollection collection) {
   TByteIterator iter = collection.iterator();
   while (iter.hasNext()) {
     if (!TByteShortHashMap.this.containsKey(iter.next())) {
       return false;
     }
   }
   return true;
 }
コード例 #2
0
 /** {@inheritDoc} */
 public boolean removeAll(TByteCollection collection) {
   if (this == collection) {
     clear();
     return true;
   }
   boolean changed = false;
   TByteIterator iter = collection.iterator();
   while (iter.hasNext()) {
     byte element = iter.next();
     if (remove(element)) {
       changed = true;
     }
   }
   return changed;
 }