public ImmutableByteByteMap newWithKeyValue(byte key, byte value)
{
MutableByteByteMap map = new ByteByteHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableByteByteMap newWithoutKey(byte key)
{
MutableByteByteMap map = new ByteByteHashMap(this.size());