invoke

inline suspend operator fun <E, A> invoke(crossinline c: suspend EitherEffect<E, *>.() -> A): Either<E, A>

Deprecated

The either DSL has been moved to arrow.core.raise.either. Replace import arrow.core.computations.* with arrow.core.raise.*

Replace with

import arrow.core.raise.either
either(c)