operator []= method
- K key,
- V value
Associates the value with the key.
Implementation
void operator []=(K key, V value) {
_container[key] = value;
}
Associates the value with the key.
void operator []=(K key, V value) {
_container[key] = value;
}