Function13ToLayerSyntax

final implicit class Function13ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N](self: (A, B, C, D, E, F, G, H, I, J, K, L, M) => N)(implicit evidence$92: Tag[A], evidence$93: Tag[B], evidence$94: Tag[C], evidence$95: Tag[D], evidence$96: Tag[E], evidence$97: Tag[F], evidence$98: Tag[G], evidence$99: Tag[H], evidence$100: Tag[I], evidence$101: Tag[J], evidence$102: Tag[K], evidence$103: Tag[L], evidence$104: Tag[M], evidence$105: Tag[N])
class Object
trait Matchable
class Any

Value members

Concrete methods

def toLayer[N1 >: N : Tag]: URLayer[Has[A] & Has[B] & Has[C] & Has[D] & Has[E] & Has[F] & Has[G] & Has[H] & Has[I] & Has[J] & Has[K] & Has[L] & Has[M], Has[N1]]

Converts this function to a Layer that depends upon its inputs.

Converts this function to a Layer that depends upon its inputs.

case class FooLive(config: Config, repo: Repo) extends Foo

val live: URLayer[Has[Config] with Has[Repo], Has[Foo]] =
 FooLive.toLayer