ArithmeticExpr<DT extends num>  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 ArithmeticExpr extension - 
  roundToInt(
) → Expression< int>  - 
      
Available on Expression<
Rounds this expression to the nearest integer.DT> , provided by the ArithmeticExpr extension 
Operators
- 
  operator *(
Expression< DT> other) → Expression<DT>  - 
      
Available on Expression<
Performs a multiplication (DT> , provided by the ArithmeticExpr extensionthis*other) in sql. - 
  operator +(
Expression< DT> other) → Expression<DT>  - 
      
Available on Expression<
Performs an addition (DT> , provided by the ArithmeticExpr extensionthis+other) in sql. - 
  operator -(
Expression< DT> other) → Expression<DT>  - 
      
Available on Expression<
Performs a subtraction (DT> , provided by the ArithmeticExpr extensionthis-other) in sql. - 
  operator /(
Expression< DT> other) → Expression<DT>  - 
      
Available on Expression<
Performs a division (DT> , provided by the ArithmeticExpr extensionthis/other) in sql. - 
  operator unary-(
) → Expression< DT>  - 
      
Available on Expression<
Returns the negation of this value.DT> , provided by the ArithmeticExpr extension