ReEmpty class
- Inheritance
- Available extensions
Properties
Methods
-
between(
Object a, Object b) → Expr -
Available on Expr, provided by the ExprExtension extension
Create a predicate that checks if this expression is greater or equal toa
and less thanb
. -
betweenIn(
Object a, Object b) → Expr -
Available on Expr, provided by the ExprExtension extension
Create a predicate that checks if this expression is greater or equal toa
and less than or equal tob
. -
build(
Context c) → Z3_ast -
override
-
declare(
) → A -
Available on A, provided by the ASTExtension extension
Declare this AST element in the current context if it hasn't already. -
eq(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Predicate that checks if this expression is equal toother
. -
iff(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Assert that this expression is true if and only ifother
is true. -
implies(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Assert that if this expression is trueother
must also be true. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
notEq(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Predicate that checks if this expression is not equal toother
. -
thenElse(
Object a, Object b) → Expr -
Available on Expr, provided by the ExprExtension extension
If this is true then returnthen
, otherwise returnother
. -
to<
T> () → T -
Available on Expr, provided by the ExprExtension extension
Convert this expression to aT
. -
toBigInt(
) → BigInt -
Available on Expr, provided by the ExprExtension extension
Convert this expression to a BigInt, requires that this expression is a Numeral. -
toBool(
) → bool -
Available on Expr, provided by the ExprExtension extension
Convert this expression to a bool, requires that this expression is either trueExpr or falseExpr. -
toDouble(
) → double -
Available on Expr, provided by the ExprExtension extension
Convert this expression to a double, requires that this expression is a Numeral. -
toInt(
) → int -
Available on Expr, provided by the ExprExtension extension
Convert this expression to an int, requires that this expression is a Numeral. -
toMap(
) → Map< String, Expr> -
Available on Expr, provided by the ExprExtension extension
Convert this expression to a Map, requires that this expression constructs a datatype. -
toRat(
) → Rat -
Available on Expr, provided by the ExprExtension extension
Convert this expression to a Rat, requires that this expression is a Numeral. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator %(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Arithmetic modulo operator. This is not an euclidean modulo, it is equivalent to the%
operator in Dart. -
operator &(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Boolean AND operator. -
operator *(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Arithmetic multiplication operator. -
operator +(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Arithmetic addition operator. -
operator -(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Arithmetic subtraction operator. -
operator /(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Arithmetic division operator. -
operator <(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Predicate that checks if this expression is less thanother
. -
operator <=(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Predicate that checks if this expression is less or equal toother
. -
operator ==(
Object other) → bool -
The equality operator.
inherited
-
operator >(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Predicate that checks if this expression is equal toother
. -
operator >=(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Predicate that checks if this expression is greater or equal toother
. -
operator [](
Object index) → Expr -
Available on Expr, provided by the ExprExtension extension
Indexes an array or tuple expression using the givenindex
. -
operator ^(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Boolean XOR operator. -
operator unary-(
) → Expr -
Available on Expr, provided by the ExprExtension extension
Negate this expression. -
operator |(
Object other) → Expr -
Available on Expr, provided by the ExprExtension extension
Boolean OR operator. -
operator ~(
) → Expr -
Available on Expr, provided by the ExprExtension extension
Boolean NOT operator.