return map.toImmutable();
}
public ImmutableIntShortMap newWithoutAllKeys(IntIterable keys)
{
MutableIntShortMap map = new IntShortHashMap(this.size());
map.putAll(this);
IntIterator iterator = keys.intIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}