(int count, T value)
| 303 | } |
| 304 | |
| 305 | public void setAll(int count, T value) { |
| 306 | checkCapacity(count); |
| 307 | pos = count; |
| 308 | Arrays.fill(buffer, value); |
| 309 | } |
| 310 | |
| 311 | public void setPos(int newPos) { |
| 312 | checkCapacity(newPos); |
nothing calls this directly
no test coverage detected