fromIO<A> function

Stream<A> fromIO<A>(
  1. IO<A> io
)

Implementation

Stream<A> fromIO<A>(IO<A> io) => fromTask(T.fromIO(io));