return map.toImmutable();
}
public ImmutableIntDoubleMap newWithoutAllKeys(IntIterable keys)
{
MutableIntDoubleMap map = new IntDoubleHashMap(this.size());
map.putAll(this);
IntIterator iterator = keys.intIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}