Hello Friends
I tried finding the way to achieve the following but could not, could you please assist me in doing the following
1. I have two arrays Target and Source
2. I want to copy Source Array into Target Array starting from the given indices of Target Array.
Assume Target Array size >= Source Array
Fill method in Arrays class gives me an opportunity to add like this
Arrays.fill(target, 3, 6, 50);
which will add with all 50s starting from position 3
I want something like
Arrays.fill(target, 3, source);
so that it copies all the elements of Source to target starting from position 3;
Thanks and Warm Regards