Packages

c

reqT

Var

case class Var(ref: AnyRef) extends DSL with scala.Product with Serializable

Source
constraints.scala
Linear Supertypes
Serializable, Serializable, scala.Product, Equals, DSL, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Var
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. DSL
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Var(ref: AnyRef)

Value Members

  1. def *(that: Var): MulBuilder
  2. def +(that: Var): PlusBuilder
  3. def <(const: Int): XltC
  4. def <(that: Var): XltY
  5. def <=(const: Int): XlteqC
  6. def <=(that: Var): XlteqY
  7. def =/=(const: Boolean): XeqBool
  8. def =/=(const: Int): XneqC
  9. def =/=(that: Var): XneqY
  10. def ===(mulThat: MulBuilder): XmulYeqZ
  11. def ===(sumThat: SumBuilder): SumEq
  12. def ===(const: Boolean): XeqBool
  13. def ===(const: Int): XeqC
  14. def ===(that: Var): XeqY
  15. def >(const: Int): XgtC
  16. def >(that: Var): XgtY
  17. def >=(const: Int): XgteqC
  18. def >=(that: Var): XgteqY
  19. def prefix: String
    Definition Classes
    DSL
  20. val ref: AnyRef
  21. def toScala: String

    Concrete DSL classes should have an executable string representation.

    Concrete DSL classes should have an executable string representation. If the default toString is not executable Scala-embedded DSL syntax, then this method is overridden by an executable string.

    Definition Classes
    VarDSL