Copies first entries from one array to another array. @param source source array @param length number of array entries to be copied @param target target array @param index target index
(final Object source, final int length, final Object target,
final int index)
| 142 | * @param index target index |
| 143 | */ |
| 144 | public static void copyFromStart(final Object source, final int length, final Object target, |
| 145 | final int index) { |
| 146 | System.arraycopy(source, 0, target, index, length); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Copies first entries from one array to beginning of another array. |