Skip to main content

luaur_analysis/methods/
field_operator_ne.rs

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