get method

T get(
  1. int index
)

Returns the array value at index.

Implementation

T get(int index) => elements[index - base];