If I have two arrays e.g
let one = [1,3,5] let two = [2,4,6]
I would like to merge/interleave the arrays in the following pattern [one[0],
If you're just looking to interleave two arrays, you could just do something like:
let maxIndex = max(one.count, two.count) var mergedArray = Array() for index in 0..