get method

E get(
  1. int index
)

Returns the element at the specified index.

index the index of the element to return

Implementation

E get(int index) {
  return _list[index];
}