flatMapLeft

inline fun <L, R, L2> Either<L, R>.flatMapLeft(fLeft: (L) -> Either<L2, R>): Either<L2, R>

Binds provided function if this is Either.Left.

Important: This is a Public Preview API. It may be changed or removed at any time.