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