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