BizVR to DMN Negation Mapping - Gnorion/BizVR GitHub Wiki
| Expression | Meaning |
|---|---|
| not("Steak") | Test if the input is not the String Steak |
| not(>10) | Test if the input is not greater than 10, which means it is less than or equal to 10 |
| not(3,5,7) | Test if the input is neither 3, 5 nor 7 |
| not([20..30]) | Test if the input is not between 20 and 30 |