isBiggerThanValue method

Expression<bool> isBiggerThanValue(
  1. DT other
)

Returns an expression that is true if this expression is strictly bigger than the other value.

Implementation

Expression<bool> isBiggerThanValue(DT other) {
  return isBiggerThan(variable(other));
}