flatMap

inline fun <L, R, T> Either<L, R>.flatMap(f: (R) -> Either<L, T>): Either<L, T>(source)

flat-map over the Right side of this Either.