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