E elementAt(int index)

Source

E elementAt(int index) {
  RangeError.checkValidIndex(index, this);
  return _table[(_head + index) & (_table.length - 1)];
}