ioToFutureConversion

given ioToFutureConversion[T](using val runtime: IORuntime): Conversion[IO[T], Future[T]]

Value members

Concrete methods

def apply(io: IO[T]): Future[T]

Inherited methods

@unspecialized
def andThen[A](g: Future[T] => A): IO[T] => A
Inherited from
Function1
@unspecialized
def compose[A](g: A => IO[T]): A => Future[T]
Inherited from
Function1
override def toString(): String
Definition Classes
Function1 -> Any
Inherited from
Function1

Concrete fields

protected val runtime: IORuntime

Extensions

Inherited extensions

extension (x: T)
def convert: Future[T]

x.convert converts a value x of type T to type U

x.convert converts a value x of type T to type U

Inherited from
Conversion