operator []= method

void operator []=(
  1. int idx,
  2. String char
)

Implementation

operator []=(int idx, String char) {
  setCharAt(idx, char);
}