combineK

fun <E, A> Validated<E, A>.combineK(SE: Semigroup<E>, y: Validated<E, A>): Validated<E, A>


fun <A, B> Either<A, B>.combineK(y: Either<A, B>): Either<A, B>

Deprecated

This API is considered redundant. If this method is crucial for you, please let us know on the Arrow Github. Thanks! https://github.com/arrow-kt/arrow/issues Prefer the Either DSL, or new recover API

Replace with

recover { y.bind() }