public ImmutableShortFloatMap newWithKeyValue(short key, float value)
{
MutableShortFloatMap map = new ShortFloatHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableShortFloatMap newWithoutKey(short key)
{
MutableShortFloatMap map = new ShortFloatHashMap(this.size());