return map.toImmutable();
}
public ImmutableCharLongMap newWithoutAllKeys(CharIterable keys)
{
MutableCharLongMap map = new CharLongHashMap(this.size());
map.putAll(this);
CharIterator iterator = keys.charIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}