set<T> method

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

Implementation

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