at method

T at(
  1. int index
)

Implementation

T at(int index) {
  return (index >= 0) ? this[index] : this[length + index];
}