CountAllExpression class final

Inheritance
Available extensions

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

add(Expr<int> other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
addValue(int other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
asDouble() Expr<double>

Available on Expr<int>, provided by the ExpressionInt extension

Cast as double.
asString() Expr<String>

Available on Expr<int>, provided by the ExpressionInt extension

Cast as string.
divide(Expr<int> other) Expr<double>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
divideValue(int other) Expr<double>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
multiply(Expr<int> other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
multiplyValue(int other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
subtract(Expr<int> other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
subtractValue(int other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
toString() String
A string representation of this object.
inherited

Operators

operator *(Expr<int> other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
operator +(Expr<int> other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
operator -(Expr<int> other) Expr<int>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
operator /(Expr<int> other) Expr<double>

Available on Expr<int>, provided by the ExpressionInt extension

Add this expression to other.
operator ==(Object other) bool
The equality operator.
inherited