public ImmutableByteShortMap newWithKeyValue(byte key, short value)
{
MutableByteShortMap map = new ByteShortHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableByteShortMap newWithoutKey(byte key)
{
MutableByteShortMap map = new ByteShortHashMap(this.size());