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