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