IOEffectCreation

trait IOTypes
class Object
trait Matchable
class Any
object IOEffect.type

Type members

Inherited types

type _Io[R] = Member[IO, R]
Inherited from:
IOTypes
Source:
IOEffect.scala
type _io[R] = MemberIn[IO, R]
Inherited from:
IOTypes
Source:
IOEffect.scala

Value members

Concrete methods

final def fromIO[R : _io, A](io: IO[A]): Eff[R, A]
final def ioDelay[R : _io, A](io: => A): Eff[R, A]
final def ioRaiseError[R : _io, A](t: Throwable): Eff[R, A]
final def ioSuspend[R : _io, A](io: => IO[Eff[R, A]]): Eff[R, A]