between
Returns true if the first argument is greater than or equal to the second argument and lesser than or equal to the third argument.
Information noteNote: This feature is only available in
      Talend Cloud Pipeline Designer and
            Talend Data Mapper.
  Arguments
- Value to compare.
 - Smallest value in the range.
 - Largest value in the range.
 - Optional: boolean specifying if the first value is exclusive (false by default).
 - Optional: boolean specifying if the last value is exclusive (false by default).
 
Examples
| Expression | Result | 
|---|---|
| between(5, 5, 10, true, false) | false |