}
public boolean removeAll(LongIterable source)
{
int oldSize = LongCharHashMap.this.size();
LongIterator iterator = source.longIterator();
while (iterator.hasNext())
{
LongCharHashMap.this.removeKey(iterator.next());
}
return oldSize != LongCharHashMap.this.size();
}