operator [] method

List<double> operator [](
  1. int index
)

Implementation

List<double> operator [](int index) {
  return _base[index];
}