Skip to main content

luaur_code_gen/enums/
int_64_binary.rs

1#[allow(non_camel_case_types)]
2#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
3pub enum Int64Binary {
4    Add,
5    Sub,
6    Mul,
7    Div,
8    Idiv,
9    Udiv,
10    Rem,
11    Urem,
12    Mod,
13}
14
15#[allow(non_upper_case_globals)]
16impl Int64Binary {
17    pub const Add: Self = Self::Add;
18    pub const Sub: Self = Self::Sub;
19    pub const Mul: Self = Self::Mul;
20    pub const Div: Self = Self::Div;
21    pub const Idiv: Self = Self::Idiv;
22    pub const Udiv: Self = Self::Udiv;
23    pub const Rem: Self = Self::Rem;
24    pub const Urem: Self = Self::Urem;
25    pub const Mod: Self = Self::Mod;
26}