`Validated.applicative().map(oneV, twoV, threeV) {...
# arrow
s
Validated.applicative().map(oneV, twoV, threeV) { one, two, three -> }
<-- I need a flatMap version of this, as I need to return another Validated inside the lambda. Is that possible? I tried flatMap and I tried map with a flatten after.