getAt method

V getAt(
  1. int index
)

Retrieves the value at the specified index.

Implementation

V getAt(int index) {
  return values[index];
}