lower
Returns true if the first argument is lower than the second
argument.
All supported literals can be used. The third argument allows you to specify an epsilon to check a non-strict equality. It can be used only if at least one of the values to compare is a real number. The other number can be a real number, a string representation of a real number, or bytes.
Arguments
- First value.
- Second value.
- Epsilon as a double or float.
Examples
Expression | Result |
---|---|
lower(1.5, 2, 0.1D) | true |