arrow-core / arrow.core.extensions.either.applicativeError / arrow.Kind
| attempt | fun <L, A> Kind<Kind<ForEither, L>, A>.~~attempt~~(): Either<L, Either<L, A>> | 
    
| fromOption | fun <L, A> Kind<ForOption, A>.~~fromOption~~(arg1: () -> L): Either<L, A> | 
    
| handleError | fun <L, A> Kind<Kind<ForEither, L>, A>.~~handleError~~(arg1: (L) -> A): Either<L, A> | 
    
| handleErrorWith | fun <L, A> Kind<Kind<ForEither, L>, A>.~~handleErrorWith~~(arg1: (L) -> Kind<Kind<ForEither, L>, A>): Either<L, A> | 
    
| redeem | fun <L, A, B> Kind<Kind<ForEither, L>, A>.~~redeem~~(arg1: (L) -> B, arg2: (A) -> B): Either<L, B> | 
    
Do you like Arrow?
✖