deleteCharAt method

void deleteCharAt(
  1. int idx
)

Implementation

void deleteCharAt(int idx) {
  delete(idx, idx + 1);
}