public ImmutableFloatLongMap newWithKeyValue(float key, long value)
{
MutableFloatLongMap map = new FloatLongHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableFloatLongMap newWithoutKey(float key)
{
MutableFloatLongMap map = new FloatLongHashMap(this.size());