public boolean retainAll(DoubleIterable source)
{
int oldSize = this.size();
final DoubleSet sourceSet = source instanceof DoubleSet ? (DoubleSet) source : source.toSet();
IntDoubleHashMap retained = IntDoubleHashMap.this.select(new IntDoublePredicate()
{
public boolean accept(int key, double value)
{
return sourceSet.contains(value);
}