Skip to main content

luaur_analysis/methods/
string_singleton_operator_ne.rs

1use crate::records::string_singleton::StringSingleton;
2
3impl StringSingleton {
4    pub fn operator_ne(&self, rhs: &StringSingleton) -> bool {
5        !self.operator_eq(rhs)
6    }
7}