<@U88HXKLP3> I think you can bring in the syntax i...
# arrow
r
@jacob I think you can bring in the syntax in
0.7.0
like this (untested)
Copy code
val errorOrResults: Either<String, List<Int>> = 
 ListK.traverse().run {
  listOf(1.right(), 2.right(), "not a number".left()).k()
    .sequence(Either.applicative()).fix()
 }