Packages

object Expression

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

Type Members

  1. case class ADD(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
  2. case class AND(lhs: Exp[Boolean], rhs: Exp[Boolean]) extends Exp[Boolean] with Product with Serializable
  3. case class BOOL_SYMBOL(key: String) extends Exp[Boolean] with Product with Serializable
  4. case class DIVIDE(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
  5. case class EQUALS(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
  6. sealed trait Exp[R] extends AnyRef
  7. case class GREATER_THAN(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
  8. case class GREATER_THAN_EQ(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
  9. case class IF(cond: Exp[Boolean], lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
  10. case class LESSER_THAN(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
  11. case class LESSER_THAN_EQ(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
  12. case class MAX(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
  13. case class MIN(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
  14. case class MULTIPLY(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
  15. case class NARY_AND(rhs: Seq[Exp[Boolean]]) extends Exp[Boolean] with Product with Serializable
  16. case class NARY_OR(rhs: Seq[Exp[Boolean]]) extends Exp[Boolean] with Product with Serializable
  17. case class NOT(rhs: Exp[Boolean]) extends Exp[Boolean] with Product with Serializable
  18. case class NOT_EQUALS(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
  19. case class NUM_LITERAL(value: Double) extends Exp[Double] with Product with Serializable
  20. case class NUM_SYMBOL(key: String) extends Exp[Double] with Product with Serializable
  21. case class OR(lhs: Exp[Boolean], rhs: Exp[Boolean]) extends Exp[Boolean] with Product with Serializable
  22. case class STR_EQUALS(lhs: Exp[String], rhs: Exp[String]) extends Exp[Boolean] with Product with Serializable
  23. case class STR_LITERAL(value: String) extends Exp[String] with Product with Serializable
  24. case class STR_NOT_EQUALS(lhs: Exp[String], rhs: Exp[String]) extends Exp[Boolean] with Product with Serializable
  25. case class STR_SET_CONTAINS(lhs: Exp[Set[String]], rhs: Exp[String]) extends Exp[Boolean] with Product with Serializable
  26. case class STR_SET_SYMBOL(key: String) extends Exp[Set[String]] with Product with Serializable
  27. case class STR_SYMBOL(key: String) extends Exp[String] with Product with Serializable
  28. case class SUBTRACT(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def fuzzyEquals(lhs: Double, rhs: Double): Boolean
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def numericCompare(env: Map[String, Any], lhs: Exp[Double], rhs: Exp[Double], comparator: (Double, Double) ⇒ Boolean): Boolean
  17. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped