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