I’m looking for a method to do `List<ValidatedNel<E, A>>` -> `ValidatedNel<E, List...
e
I’m looking for a method to do
List<ValidatedNel<E, A>>
->
ValidatedNel<E, List<A>>
, is there any such method? šŸ™‚
a
traverseValidated?
(just from memory, it might not be what you are looking for šŸ˜…)
e
Thanks for replying! Having a look.. šŸ˜„
a