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