Skip to main content

luaur_bytecode/methods/
bc_op_operator_ne.rs

1use crate::records::bc_op::BcOp;
2
3impl BcOp {
4    #[inline]
5    pub fn operator_ne(&self, rhs: &BcOp) -> bool {
6        !self.eq(rhs)
7    }
8}