Packages

object Expr

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

Type Members

  1. trait Const[T <: Txn[T], +A] extends Expr[T, A]

    A constant expression simply acts as a proxy for a constant value of type A.

    A constant expression simply acts as a proxy for a constant value of type A. Its event is a dummy (constants never change), and the value method does not need to use the transaction. String representation, hash-code and equality are defined in terms of the constant peer value.

  2. trait Program[T <: Txn[T], A] extends Expr[T, A]

    A program expression is backed by a code tree with an Ex as its leaf.

    A program expression is backed by a code tree with an Ex as its leaf. Program inputs are accessed through the object's attribute map.

  3. trait Type[A1, Repr[~ <: Txn[~]] <: Expr[~, A1]] extends Obj.Type

Value Members

  1. def isConst(expr: Expr[_, _]): Boolean
  2. def isProgram(expr: Expr[_, _]): Boolean
  3. def isVar(expr: Expr[_, _]): Boolean
  4. object Const
  5. object Program
  6. object Type