}
public boolean removeAll(CharIterable source)
{
int oldSize = CharBooleanHashMap.this.size();
CharIterator iterator = source.charIterator();
while (iterator.hasNext())
{
CharBooleanHashMap.this.removeKey(iterator.next());
}
return oldSize != CharBooleanHashMap.this.size();
}