get<T> method

T get<T>(
  1. int index
)

Implementation

T get<T>(int index) {
  return _values[index] as T;
}