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