( begin auto-generated from arrayCopy.xml ) 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 srcPos and into the position specified by dstPos . The number of elements to copy is determ
(Object src, int srcPosition,
Object dst, int dstPosition,
int length)
| 8329 | * @see PApplet#concat(boolean[], boolean[]) |
| 8330 | */ |
| 8331 | static public void arrayCopy(Object src, int srcPosition, |
| 8332 | Object dst, int dstPosition, |
| 8333 | int length) { |
| 8334 | System.arraycopy(src, srcPosition, dst, dstPosition, length); |
| 8335 | } |
| 8336 | |
| 8337 | /** |
| 8338 | * Convenience method for arraycopy(). |
no test coverage detected