Maps over an array inside the Opt with index.
opt(['a', 'b']).mapWithIndexIn((x, i) => x + i) // Some(['a0', 'b1'])none.mapWithIndexIn((x, i) => x + i) // None
Maps over an array inside the Opt with index.