arrow-core-data / arrow.core.computations / EitherEffect
interface EitherEffect<E, A> : Effect<Either<E, A>>
| bind | open suspend fun <B> Either<E, B>.bind(): Bopen suspend fun <B> Validated<E, B>.bind(): B | 
    
| component1 | open suspend operator fun <B> Either<E, B>.~~component1~~(): B | 
    
| not | open suspend operator fun <B> Either<E, B>.~~not~~(): B | 
    
| RestrictedEitherEffect | interface RestrictedEitherEffect<E, A> : EitherEffect<E, A> | 
    
Do you like Arrow?
✖