Object/Trait

com.stripe.dagon

Expr

Related Docs: trait Expr | package dagon

Permalink

object Expr extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Expr
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Binary[N[_], T1, T2, T3](arg1: Id[T1], arg2: Id[T2], fn: (N[T1], N[T2]) ⇒ N[T3]) extends Expr[N, T3] with Product with Serializable

    Permalink
  2. case class Const[N[_], T](value: N[T]) extends Expr[N, T] with Product with Serializable

    Permalink
  3. case class Unary[N[_], T1, T2](arg: Id[T1], fn: (N[T1]) ⇒ N[T2]) extends Expr[N, T2] with Product with Serializable

    Permalink
  4. case class Var[N[_], T](name: Id[T]) extends Expr[N, T] with Product with Serializable

    Permalink
  5. case class Variadic[N[_], T1, T2](args: List[Id[T1]], fn: (List[N[T1]]) ⇒ N[T2]) extends Expr[N, T2] with Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  6. def dependsOnIds[N[_], A](expr: Expr[N, A]): List[Id[_]]

    Permalink

    What Ids does this expression depend on

  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def evaluate[N[_], T](idToExp: HMap[Id, [β$2$]Expr[N, β$2$]], expr: Expr[N, T]): N[T]

    Permalink

    Evaluate the given expression with the given mapping of Id to Expr.

  10. def evaluateMemo[N[_]](idToExp: HMap[Id, [β$3$]Expr[N, β$3$]]): FunctionK[[β$4$]Expr[N, β$4$], N]

    Permalink

    Build a memoized FunctionK for this particular idToExp.

    Build a memoized FunctionK for this particular idToExp. Clearly, this FunctionK is only valid for the given idToExp which is captured in this closure.

  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped