Abstract
Filters each element of an array inside the Opt, returning an Opt of the array with elements that pass the test implemented by the provided function.
opt([1, 2, 3]).filterIn(x => x > 1) // Some([2, 3])
Filters each element of an array inside the Opt, returning an Opt of the array with elements that pass the test implemented by the provided function.