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