final case class TyExpr[+E <: Expr](expr: E, ty: Type) extends Product with Serializable

Z3 Expression coupled with a custom type. Contains helper operations.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TyExpr
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TyExpr(expr: E, ty: Type)

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. def as[T <: Expr]: TyExpr[T]

    Cast the expression to another.

    Cast the expression to another. This is basically asInstanceOf und relatively unsafe.

  5. def asExpr[T <: Expr]: T

    Cast the expression to another and unwrap it.

    Cast the expression to another and unwrap it. This is basically asInstanceOf und relatively unsafe.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. val expr: E
  10. def get: TyExpr[Expr]

    Call get on an LazyErr.

    Call get on an LazyErr. Fails on non-LazyErr.

  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def getSome: TyExpr[Expr]

    Call getSome on an Option.

    Call getSome on an Option. Fails on non-options.

  13. def isError: TyExpr[BoolExpr]

    Produce a boolean expression, that checks for isError on an LazyErr.

    Produce a boolean expression, that checks for isError on an LazyErr. Fails on non-LazyErr.

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def isSome: TyExpr[BoolExpr]

    Produce a boolean expression that checks whether an Option is Some.

  16. def member(member: String)(implicit ctx: Context): TyExpr[Expr]

    Access a member.

    Access a member. Fails on non-objects.

  17. def mkEq(ctx: Context, other: TyExpr[Expr]): BoolExpr

    Produce an expression, that tests for equality.

  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    TyExpr → AnyRef → Any
  23. val ty: Type
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped