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