operator []= method

void operator []=(
  1. K k,
  2. V v
)

Implementation

void operator []=(K k, V v) {
  value[k] = v;
  notify();
}