autoGrow method

void autoGrow()

Implementation

void autoGrow() {
  if (_capacity < _data.length) {
    _capacity = _data.length;
  }
}