com.stripe.dagon

ExpressionDag

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
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

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

    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

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

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

    Attributes
    protected

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addRoot[T](node: N[T]): (ExpressionDag[N], Id[T])

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

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

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

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

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

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

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

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

    list all the nodes that depend on the given node

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

    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
  14. final def eq(arg0: AnyRef): Boolean

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

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

    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.

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

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

    Returns 0 if the node is absent, which is true use .

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

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

    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

  20. def finalize(): Unit

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

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

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

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

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

    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.

  25. final def isInstanceOf[T0]: Boolean

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

    Is this node a root of this graph

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

    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

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

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

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

  32. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped