operator []= method

void operator []=(
  1. PhysicalAddressKey key,
  2. PhysicalAddressEntry? value
)

Implementation

operator []=(PhysicalAddressKey key, PhysicalAddressEntry? value) {
  if (value == null) {
    this.InternalRemove(key);
  } else {
    value.Key = key;
    this.InternalAddOrReplace(value);
  }
}