(a > b) and (a < c)

This function returns "true" if the condition b < a < c is met, otherwise, "false" is returned. The comparison is done numerically. All non-numeric types (e.g. "Date") are implicitly converted to a number.

Parameters


Parameter

Description

a

Value.

b

Value.

c

Value.

Examples


Parameter a

Parameter b

Parameter c

Result

1

1

1

false

1

2

3

false

2

1

3

true