public ImmutableLongIntMap newWithKeyValue(long key, int value)
{
MutableLongIntMap map = new LongIntHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableLongIntMap newWithoutKey(long key)
{
MutableLongIntMap map = new LongIntHashMap(this.size());