//! # 8.3.1 Numeric Expression
//! A numeric expression is a collection of terms which evaluates to a trace, number, array, or
//! other data element.
pubenumNumericOperator{/// `+`
Add,/// `-`
Sub,/// `*`
Mul,/// `/` or `DIV`
Div,/// `^`
Exp,/// `MOD`
Modulus,/// `OR`
Or,/// `AND`
And,/// `EXOR`
Exor,}pubenumUnaryNumericOperator{/// `+`
Add,/// `-`
Sub,/// `NOT`
Not,}