Add an int at the end of the list.
(int value)
| 48 | * Add an int at the end of the list. |
| 49 | */ |
| 50 | public void add(int value) { |
| 51 | ensureCapacity(size_ + 1); |
| 52 | data_[size_++] = value; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Remove elements from the end the of list. |
no test coverage detected