operator []= method
void
operator []=(
- K key,
- V value
Associates the given key with the given value in the map.
key: The key to associate with the value.value: The value to store in the map.
The update behavior is determined by the ChangeType of the VN.
Implementation
void operator []=(K key, V value) {
_setter(key, value);
}