Copies an array (or part of an array) to another array. The src array is copied to the dst array, beginning at the position specified by srcPosition and into the position specified by dstPosition . The number of elements to copy is determined by length . Note that co
(Object src, int srcPosition,
Object dst, int dstPosition,
int length)
| 7535 | * @see PApplet#concat(boolean[], boolean[]) |
| 7536 | */ |
| 7537 | @SuppressWarnings("SuspiciousSystemArraycopy") |
| 7538 | static public void arrayCopy(Object src, int srcPosition, |
| 7539 | Object dst, int dstPosition, |
| 7540 | int length) { |
| 7541 | System.arraycopy(src, srcPosition, dst, dstPosition, length); |
| 7542 | } |
| 7543 | |
| 7544 | /** |
| 7545 | * Convenience method for arraycopy(). |
no test coverage detected