isSmallerThanValue method

Expression<bool> isSmallerThanValue(
  1. DT other
)

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

Implementation

Expression<bool> isSmallerThanValue(DT other) =>
    isSmallerThan(variable(other));