IO<A> typedef

IO<A> = ZIO<NoEnv, Never, A>

Represents an operation that cant fail, with no requirements

Implementation

typedef IO<A> = ZIO<NoEnv, Never, A>;