Ayush Kumar
Ayush Kumar
Hard to say, but I'd also say that that the 10.4 version of the library is filled with features for most of the use cases you'll probably have.
Does it not make sense to convert ``` .map(Try::toEither) .map(e->e.mapLeft(Throwable::getMessage)) .map(e->e.leftOrElse("No Exception")) ``` to ```.map(t -> t.fold(s -> "No Exception", e->e.getMessage()))```
Doh, found this: https://medium.com/@johnmcclean/a-simple-functional-java-validation-example-3d2504e97d99. I guess modifying the question, is there any way to combine like 20 fields of different types? I feel like there should be some way to...
Looks like it was changed in 9.12 I think https://github.com/flyway/flyway/issues/3497