I am trying to find a structure or way to adding objects from an array to another array. To clarify;
actualArray[] // size not specified
smthArray[1,9,8,4,9]
i want to add objects from smthArray to actualArray from 5th index. Like that,
actualArray[,,,,,1,9,8,4,9]
second times i can add object from begging. Like that,
actualArray[1,9,8,4,9,1,9,8,4,9]
What kind of structure that i need to achieve to this ?
Note: NSSet doesn't fit my purpose because i care about actualArray orders.