set<T> method

void set<T>(
  1. int index,
  2. T obj
)

Implementation

void set<T>(int index, T obj) {
  _data[index] = obj;
}