Skip to main content

luaur_analysis/methods/
string_singleton_operator_eq.rs

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