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