return map.toImmutable();
}
public ImmutableLongFloatMap newWithoutAllKeys(LongIterable keys)
{
MutableLongFloatMap map = new LongFloatHashMap(this.size());
map.putAll(this);
LongIterator iterator = keys.longIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}