public static native void arraycopy(Object src, int src_position, Object dst, int dst_position, int length);
My object contain two parameters (int x, char y)
i want to increment all "x" elements each time i copy my array .
actually i copy with O(n) and next i increment with also O(n) this decrease the performance !!!
if we can modifiy arraycopy to copy and increment element by element the complexity will be O(n).