insert method

void insert(
  1. int index
)

Implementation

void insert(int index) {
  _invalidateCaches();
  _data.insert(index);
}