return map.toImmutable();
}
public ImmutableFloatShortMap newWithoutAllKeys(FloatIterable keys)
{
MutableFloatShortMap map = new FloatShortHashMap(this.size());
map.putAll(this);
FloatIterator iterator = keys.floatIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}