Expressif is the variable substitution syntax combined with a library of predicates and functions. Initially designed for NBi.io, Expressif allows you to define variables, transformations of these variables (with expressions and functions), in plain text, which can then be interpreted by the engine. Same can be done with predicates.
Apache License 2.0
1
stars
0
forks
source link
Parser for numeric intervals doesn't support shorthands #249
NBi.io was supporting the shorthands:
Zero-related
(absolutely-positive)
or(+)
: Greater than 0(positive)
or(0+)
: Greater or equal to 0(absolutely-negative)
or(-)
: Less than 0(negative)
or(0-)
: Less or equal to 0Infinite-related
(>500)
: Greater than 500(>=500)
: Greater or equal to 500(<500)
: Less than 500(<=500)
: Less or equal to 500Infinite
[-INF;10]
: Less or equal to 10[10;+INF]
: Greater or equal to 10