Bunch of infix ops

This commit is contained in:
2023-07-08 23:08:22 -05:00
parent f682a234c7
commit ca72b480c5
3 changed files with 89 additions and 1 deletions
+13
View File
@@ -135,6 +135,19 @@ pub enum Operator {
Mul,
Div,
Mod,
And,
Or,
BitAnd,
BitOr,
Xor,
Lt,
Le,
Gt,
Ge,
Eq,
Ne,
Lshift,
Rshift,
}
#[derive(PartialEq, Clone, Debug)]