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