return map.toImmutable();
}
public ImmutableShortCharMap newWithoutAllKeys(ShortIterable keys)
{
MutableShortCharMap map = new ShortCharHashMap(this.size());
map.putAll(this);
ShortIterator iterator = keys.shortIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}