(ReadOnlyObjList<? extends T> that)
| 83 | } |
| 84 | |
| 85 | public void addReverseAll(ReadOnlyObjList<? extends T> that) { |
| 86 | int n = that.size(); |
| 87 | checkCapacity(pos + n); |
| 88 | for (int i = n - 1; i >= 0; i--) { |
| 89 | buffer[pos++] = that.getQuick(i); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | @SuppressWarnings("unchecked") |
| 94 | public void checkCapacity(int capacity) { |
no test coverage detected