flatMap

inline fun <L, R, R2> Either<L, R>.flatMap(fRight: (R) -> Either<L, R2>): Either<L, R2>

Binds provided function if this is Either.Right.

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