Enum rtlola_frontend::mir::ArithLogOp [−][src]
pub enum ArithLogOp {}Show 22 variants
Not, Neg, Add, Sub, Mul, Div, Rem, Pow, And, Or, BitXor, BitAnd, BitOr, BitNot, Shl, Shr, Eq, Lt, Le, Ne, Ge, Gt,
Expand description
Arithmetical and logical operations
Variants
Logic negation (!)
Arithmetic negation (-)
Arithmetic addition (+)
Arithmetic subtraction (-)
Arithmetic multiplication (*)
Arithmetic division (/)
Arithmetic modulation (%)
Arithmetic exponentiation (**)
Logic conjunction/multiplication (&&)
Logic disjunction/addition (||)
Bit-wise xor (^)
Bit-wise conjunction/multiplication (&)
Bit-wise disjunction/addition (|)
Bit-wise negation / One’s complement (~)
Bit-wise left-shift (<<)
Bit-wise right-shift (>>)
Semantic Equality (==)
Less-than comparison (<)
Less-than-or-equal comparison (<=)
Semantic Inequality (!=)
Greater-than-or-equal comparison (>=)
Greater-than comparison (>)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ArithLogOp
impl Send for ArithLogOp
impl Sync for ArithLogOp
impl Unpin for ArithLogOp
impl UnwindSafe for ArithLogOp
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
type Output = T
type Output = T
Should always be Self