what's an expedient way to go from `Validated<E, Either<A, Validated<E, B>>>` to `...
t
what's an expedient way to go from
Validated<E, Either<A, Validated<E, B>>>
to
Validated<E, Either<A, B>>
-- to lift the potential invalid value up from its
Either
?