Applies a flatMap function to an array inside.
flatMap
opt([1, 2]).flatMapIn(x => [x, x * 2]) // Some([1, 2, 2, 4])
Applies a
flatMap
function to an array inside.