operator []= method

void operator []=(
  1. int index,
  2. T t
)

Implementation

void operator []=(int index, T t) {
  _map[index] = t;
}