public boolean retainAll(LongIterable source)
{
int oldSize = this.size();
final LongSet sourceSet = source instanceof LongSet ? (LongSet) source : source.toSet();
IntLongHashMap retained = IntLongHashMap.this.select(new IntLongPredicate()
{
public boolean accept(int key, long value)
{
return sourceSet.contains(value);
}