Abstract
Zips each element of an array inside the Opt with the corresponding element from another array. If the arrays are of different lengths, the resulting array will have the length of the shorter one.
opt([1, 2]).zipIn([3, 4]) // Some([[1, 3], [2, 4]])opt([1, 2]).zipIn(null) // Nonenone.zipIn([1, 2]) // None
Zips each element of an array inside the Opt with the corresponding element from another array. If the arrays are of different lengths, the resulting array will have the length of the shorter one.