addLast method Null safety
- int value
inherited
Implementation
void addLast(E value) {
_table[_tail] = value;
_tail = (_tail + 1) & (_table.length - 1);
if (_head == _tail) _growAtCapacity();
}
void addLast(E value) {
_table[_tail] = value;
_tail = (_tail + 1) & (_table.length - 1);
if (_head == _tail) _growAtCapacity();
}