Compiler

object Compiler extends CompilerLowPriority
Companion
class
trait CompilerLowPriority
trait CompilerLowPriority0
trait CompilerLowPriority1
trait CompilerLowPriority2
class Object
trait Matchable
class Any

Type members

Classlikes

object Target extends TargetLowPriority
Companion
class
sealed
trait Target[F[_]] extends MonadCancelThrow[F]

Type class that describes the effect used during stream compilation. Instances exist for all effects which have either a Concurrent instance or a Sync instance.

Type class that describes the effect used during stream compilation. Instances exist for all effects which have either a Concurrent instance or a Sync instance.

Companion
object

Implicits

Implicits

implicit

Inherited implicits

implicit
val fallibleInstance: Compiler[Fallible, [_] =>> Either[Throwable, _$8]]
Inherited from
CompilerLowPriority
implicit
val idInstance: Compiler[Id, Id]
Inherited from
CompilerLowPriority0
implicit
def resource[F[_] : Target]: Compiler[F, [_] =>> Resource[F, _$4]]
Inherited from
CompilerLowPriority2
implicit
def target[F[_]](implicit F: Target[F]): Compiler[F, F]

Provides a Compiler[F, F] instance for an effect F which has a Compiler.Target instance (i.e., either a Concurrent or Sync instance).

Provides a Compiler[F, F] instance for an effect F which has a Compiler.Target instance (i.e., either a Concurrent or Sync instance).

Inherited from
CompilerLowPriority1