This expands the generalised Compare node and provides users with
two built-in operation modes for testing between values.
Between: val >= min && val <= max
Not Between: val < min || val > max
The term Between is taken from SQL and Python where it is inclusive.
Supports: Float, Int and Vector data types
{F12742808}