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