Appends the populated contents of another FastArray. @param newData the source array to append
(FastArray newData)
| 134 | * @param newData the source array to append |
| 135 | */ |
| 136 | public void addAll(FastArray newData) { |
| 137 | addAll(newData.data, newData.size); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Appends the first {@code size} elements from the supplied array. |
no test coverage detected