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