Chris Cordero
06/02/2020, 4:10 AMIO<List<A>> is there a great way to transform it into a List<IO<A>> instead of doing:
val foo: IO<List<A>> = ...
val (bar) = foo
val final = bar.map { IO.just(it) }Jakub Pi
06/02/2020, 5:27 AMsequenceChris Cordero
06/02/2020, 1:34 PMsequence working and the docs on traverse / sequence was much heavier than i was expecting/could handle last night, so i'll try to take another look at it today.