Trait/Object

com.stripe.dagon

ExpressionDag

Related Docs: object ExpressionDag | package dagon

Permalink

sealed trait ExpressionDag[N[_]] extends AnyRef

Self Type
ExpressionDag[N]
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExpressionDag
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def idToExp: HMap[Id, [β$0$]Expr[N, β$0$]]

    Permalink

    These have package visibility to test the law that for all Expr, the node they evaluate to is unique

    These have package visibility to test the law that for all Expr, the node they evaluate to is unique

    Attributes
    protected[com.stripe.dagon]
  2. abstract def nextId: Int

    Permalink
    Attributes
    protected
  3. abstract def nodeToLiteral: FunctionK[N, [β$1$]Literal[N, β$1$]]

    Permalink
    Attributes
    protected
  4. abstract def roots: Set[Id[_]]

    Permalink
    Attributes
    protected

Concrete 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. def addRoot[T](node: N[T]): (ExpressionDag[N], Id[T])

    Permalink

    Add a GC root, or tail in the DAG, that can never be deleted.

  5. def apply(rule: Rule[N]): ExpressionDag[N]

    Permalink

    Apply the given rule to the given dag until the graph no longer changes.

  6. def applyOnce(rule: Rule[N]): ExpressionDag[N]

    Permalink

    apply the rule at the first place that satisfies it, and return from there.

  7. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def contains(node: N[_]): Boolean

    Permalink
  10. def dependentsOf(node: N[_]): Set[N[_]]

    Permalink

    list all the nodes that depend on the given node

  11. def ensure[T](node: N[T]): (ExpressionDag[N], Id[T])

    Permalink

    ensure the given literal node is present in the Dag Note: it is important that at each moment, each node has at most one id in the graph.

    ensure the given literal node is present in the Dag Note: it is important that at each moment, each node has at most one id in the graph. Put another way, for all Id[T] in the graph evaluate(id) is distinct.

    Attributes
    protected
  12. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def evaluate[T](id: Id[T]): N[T]

    Permalink

    After applying rules to your Dag, use this method to get the original node type.

    After applying rules to your Dag, use this method to get the original node type. Only call this on an Id[T] that was generated by this dag or a parent.

  15. def evaluateOption[T](id: Id[T]): Option[N[T]]

    Permalink
  16. def fanOut(node: N[_]): Int

    Permalink

    Returns 0 if the node is absent, which is true use .contains(n) to check for containment

  17. def fanOut(id: Id[_]): Int

    Permalink

    Return the number of nodes that depend on the given Id, TODO we might want to cache these.

    Return the number of nodes that depend on the given Id, TODO we might want to cache these. We need to garbage collect nodes that are no longer reachable from the root

  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def find[T](node: N[T]): Option[Id[T]]

    Permalink

    This finds the Id[T] in the current graph that is equivalent to the given N[T]

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. def idOf[T](node: N[T]): Id[T]

    Permalink

    This throws if the node is missing, use find if this is not a logic error in your programming.

    This throws if the node is missing, use find if this is not a logic error in your programming. With dependent types we could possibly get this to not compile if it could throw.

  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def isRoot(n: N[_]): Boolean

    Permalink

    Is this node a root of this graph

  25. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toLiteral[T](n: N[T]): Literal[N, T]

    Permalink

    Convert a N[T] to a Literal[T, N]

  30. def toString(): String

    Permalink
    Definition Classes
    ExpressionDag → AnyRef → Any
  31. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped