(ReadOnlyObjList<? extends T> that)
| 67 | } |
| 68 | |
| 69 | public void addAll(ReadOnlyObjList<? extends T> that) { |
| 70 | int n = that.size(); |
| 71 | checkCapacity(pos + n); |
| 72 | for (int i = 0; i < n; i++) { |
| 73 | buffer[pos++] = that.getQuick(i); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | public void addAll(ReadOnlyObjList<? extends T> that, int lo, int hi) { |
| 78 | int n = hi - lo; |