public ImmutableDoubleDoubleMap newWithoutKey(double key)
{
MutableDoubleDoubleMap map = new DoubleDoubleHashMap(this.size());
map.putAll(this);
map.removeKey(key);
return map.toImmutable();
}
public ImmutableDoubleDoubleMap newWithoutAllKeys(DoubleIterable keys)
{