scpi 1.0.1

SCPI/IEEE488.2 parser library
Documentation
//! # 8.3.1 Numeric Expression
//! A numeric expression is a collection of terms which evaluates to a trace, number, array, or
//! other data element.

pub enum NumericOperator {
    /// `+`
    Add,
    /// `-`
    Sub,
    /// `*`
    Mul,
    /// `/` or `DIV`
    Div,
    /// `^`
    Exp,
    /// `MOD`
    Modulus,
    /// `OR`
    Or,
    /// `AND`
    And,
    /// `EXOR`
    Exor,
}

pub enum UnaryNumericOperator {
    /// `+`
    Add,
    /// `-`
    Sub,
    /// `NOT`
    Not,
}