Returns a bit(1) value that indicates whether x is between the values defined by a and b (including b).
x,a,b
The BETWEENRIGHTEXCLUSIVE built-in function is equivalent to the test (a <= x) & (x < b).
None.
Description
The BETWEENRIGHTEXCLUSIVE built-in function is equivalent to the test (a <= x) & (x < b).