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