Abstract
Applies a map function to an array inside.
opt([1, 2, 3]).mapIn(x => x + 1) // Some([2, 3, 4])
Applies a map function to an array inside.