public ImmutableDoubleBooleanMap newWithoutKey(double key)
{
MutableDoubleBooleanMap map = new DoubleBooleanHashMap(this.size());
map.putAll(this);
map.removeKey(key);
return map.toImmutable();
}
public ImmutableDoubleBooleanMap newWithoutAllKeys(DoubleIterable keys)
{