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