Merge two arrays by alternately adding inserting values from both arrays, starting from the left.
Array to start alternately merging from.
Second array to merge.
Zipped array.
`zip([1, 2], [3, 4, 5, 6])` results in `[1, 3, 2, 4, 5, 6]`. Copy
`zip([1, 2], [3, 4, 5, 6])` results in `[1, 3, 2, 4, 5, 6]`.
Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.
Merge two arrays by alternately adding inserting values from both arrays, starting from the left.