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