}
public boolean removeAll(ByteIterable source)
{
int oldSize = ByteLongHashMap.this.size();
ByteIterator iterator = source.byteIterator();
while (iterator.hasNext())
{
ByteLongHashMap.this.removeKey(iterator.next());
}
return oldSize != ByteLongHashMap.this.size();
}