return map.toImmutable();
}
public ImmutableLongIntMap newWithoutAllKeys(LongIterable keys)
{
MutableLongIntMap map = new LongIntHashMap(this.size());
map.putAll(this);
LongIterator iterator = keys.longIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}