abs method

Expression<DT> abs()

Calculates the absolute value of this number.

Implementation

Expression<DT> abs() {
  return FunctionCallExpression('abs', [this]);
}