`validated { }` has been deprecated. If you want to bind `Validated` you can only do it inside an`ei...
s
validated { }
has been deprecated. If you want to bind
Validated
you can only do it inside an`either { }` block, but it'll behave like
validated.toEither().bind()
.
The tl;dr is that you have to use 
zip
 for this
That is correct, if you're on
0.12.0-SNAPSHOT
. The ETA for
0.12.0
&
0.13.0
is next week. Additionally, if you're using
ValidatedNel
you can use
zip
without having to provide a
Semigroup
. It's automatically provided for
ValidatedNel
.
arrow 3
🔥 3