operator []= method
void
operator []=(
- K key,
- V value
Adds the object to the map
Implementation
void operator[]=(K key, V value) {
_map[key] = value;
_removeExpired();
}
Adds the object to the map
void operator[]=(K key, V value) {
_map[key] = value;
_removeExpired();
}