public boolean retainAll(IntIterable source)
{
int oldSize = this.size();
final IntSet sourceSet = source instanceof IntSet ? (IntSet) source : source.toSet();
IntIntHashMap retained = IntIntHashMap.this.select(new IntIntPredicate()
{
public boolean accept(int key, int value)
{
return sourceSet.contains(value);
}