insert<T> method

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

Implementation

void insert<T>(int index, T t) {
  _values.insert(index, t);
}