public ImmutableIntShortMap newWithKeyValue(int key, short value)
{
MutableIntShortMap map = new IntShortHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableIntShortMap newWithoutKey(int key)
{
MutableIntShortMap map = new IntShortHashMap(this.size());