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