In the future doing `IO.effect { dataDTO.request()...
# arrow
s
In the future doing
IO.effect { dataDTO.request() }
will also result in
IO<Error, Data>
so you’ll get direct support for that in the future to move between
suspend () -> Either<E, A>
to
IO<E, A>
(
Kind<ForIO, E, A>
).
👌 3