return map.toImmutable();
}
public ImmutableIntFloatMap newWithoutAllKeys(IntIterable keys)
{
MutableIntFloatMap map = new IntFloatHashMap(this.size());
map.putAll(this);
IntIterator iterator = keys.intIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}