public ImmutableShortShortMap newWithKeyValue(short key, short value)
{
MutableShortShortMap map = new ShortShortHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableShortShortMap newWithoutKey(short key)
{
MutableShortShortMap map = new ShortShortHashMap(this.size());