1use crate::records::sym_def::SymDef; 2 3impl SymDef { 4 pub fn operator_ne(&self, other: &SymDef) -> bool { 5 !self.operator_eq_sym_def(other) 6 } 7}