ArithmeticBigIntExpr<DT extends BigInt?> extension
Defines the -, * and / operators on sql expressions that support it.
- on
-
- Expression<
DT>
- Expression<
Methods
-
abs(
) → Expression< DT> -
Available on Expression<
Calculates the absolute value of this number.DT> , provided by the ArithmeticBigIntExpr extension -
roundToInt(
) → Expression< int?> -
Available on Expression<
Rounds this expression to the nearest integer.DT> , provided by the ArithmeticBigIntExpr extension
Operators
-
operator *(
Expression< DT> other) → Expression<DT> -
Available on Expression<
Performs a multiplication (DT> , provided by the ArithmeticBigIntExpr extensionthis*other) in sql. -
operator +(
Expression< DT> other) → Expression<DT> -
Available on Expression<
Performs an addition (DT> , provided by the ArithmeticBigIntExpr extensionthis+other) in sql. -
operator -(
Expression< DT> other) → Expression<DT> -
Available on Expression<
Performs a subtraction (DT> , provided by the ArithmeticBigIntExpr extensionthis-other) in sql. -
operator /(
Expression< DT> other) → Expression<DT> -
Available on Expression<
Performs a division (DT> , provided by the ArithmeticBigIntExpr extensionthis/other) in sql. -
operator unary-(
) → Expression< DT> -
Available on Expression<
Returns the negation of this value.DT> , provided by the ArithmeticBigIntExpr extension