object Expression
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Expression
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class ADD(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
- case class AND(lhs: Exp[Boolean], rhs: Exp[Boolean]) extends Exp[Boolean] with Product with Serializable
- case class BOOL_SYMBOL(key: String) extends Exp[Boolean] with Product with Serializable
- case class DIVIDE(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
- case class EQUALS(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
- sealed trait Exp[R] extends AnyRef
- case class GREATER_THAN(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
- case class GREATER_THAN_EQ(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
- case class IF(cond: Exp[Boolean], lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
- case class LESSER_THAN(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
- case class LESSER_THAN_EQ(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
- case class MAX(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
- case class MIN(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
- case class MULTIPLY(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
- case class NARY_AND(rhs: Seq[Exp[Boolean]]) extends Exp[Boolean] with Product with Serializable
- case class NARY_OR(rhs: Seq[Exp[Boolean]]) extends Exp[Boolean] with Product with Serializable
- case class NOT(rhs: Exp[Boolean]) extends Exp[Boolean] with Product with Serializable
- case class NOT_EQUALS(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Boolean] with Product with Serializable
- case class NUM_LITERAL(value: Double) extends Exp[Double] with Product with Serializable
- case class NUM_SYMBOL(key: String) extends Exp[Double] with Product with Serializable
- case class OR(lhs: Exp[Boolean], rhs: Exp[Boolean]) extends Exp[Boolean] with Product with Serializable
- case class STR_EQUALS(lhs: Exp[String], rhs: Exp[String]) extends Exp[Boolean] with Product with Serializable
- case class STR_LITERAL(value: String) extends Exp[String] with Product with Serializable
- case class STR_NOT_EQUALS(lhs: Exp[String], rhs: Exp[String]) extends Exp[Boolean] with Product with Serializable
- case class STR_SET_CONTAINS(lhs: Exp[Set[String]], rhs: Exp[String]) extends Exp[Boolean] with Product with Serializable
- case class STR_SET_SYMBOL(key: String) extends Exp[Set[String]] with Product with Serializable
- case class STR_SYMBOL(key: String) extends Exp[String] with Product with Serializable
- case class SUBTRACT(lhs: Exp[Double], rhs: Exp[Double]) extends Exp[Double] with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def fuzzyEquals(lhs: Double, rhs: Double): Boolean
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def numericCompare(env: Map[String, Any], lhs: Exp[Double], rhs: Exp[Double], comparator: (Double, Double) ⇒ Boolean): Boolean
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )