public ImmutableLongShortMap newWithKeyValue(long key, short value)
{
MutableLongShortMap map = new LongShortHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableLongShortMap newWithoutKey(long key)
{
MutableLongShortMap map = new LongShortHashMap(this.size());