Skip to main content

luaur_analysis/methods/
boolean_singleton_operator_ne.rs

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