ExpressionNum<T extends num> extension

Extension methods for int and double expressions.

on

Methods

equals(Expr<T?> value) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Compare this expression to value using = in SQL coalesced to FALSE.
equalsValue(T? value) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Compare this expression to value using = in SQL coalesced to FALSE.
greaterThan(Expr<T> other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
greaterThanOrEqual(Expr<T> other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
greaterThanOrEqualValue(T other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
greaterThanValue(T other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
lessThan(Expr<T> other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
lessThanOrEqual(Expr<T> other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
lessThanOrEqualValue(T other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
lessThanValue(T other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
notEquals(Expr<T?> value) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Compare this expression to value using <> in SQL.
notEqualsValue(T? value) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Compare this expression to value using <> in SQL.

Operators

operator <(Expr<T> other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
operator <=(Expr<T> other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
operator >(Expr<T> other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.
operator >=(Expr<T> other) Expr<bool>

Available on Expr<T>, provided by the ExpressionNum extension

Check if this expression is less than other.