}
public boolean removeAll(IntIterable source)
{
int oldSize = IntIntHashMap.this.size();
IntIterator iterator = source.intIterator();
while (iterator.hasNext())
{
IntIntHashMap.this.removeKey(iterator.next());
}
return oldSize != IntIntHashMap.this.size();
}