LazyT

gql.std.LazyT
See theLazyT companion object
case class LazyT[F[_], A, B](fb: F[Eval[A] => B])

Attributes

Companion
object
Source
LazyT.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def mapF[G[_], C](f: F[Eval[A] => B] => G[Eval[A] => C]): LazyT[G, A, C]

Attributes

Source
LazyT.scala
def runWithBoth(f: B => A)(implicit F: Functor[F]): F[(A, B)]

Attributes

Source
LazyT.scala
def runWithValue(f: B => A)(implicit F: Functor[F]): F[B]

Attributes

Source
LazyT.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product