operator []= method

void operator []=(
  1. String k,
  2. T v
)

Implementation

operator []=(String k, T v) {
  values[k] = v;
}