1use crate::records::symbol::Symbol; 2 3impl Symbol { 4 #[inline] 5 pub fn operator_ne_symbol(&self, rhs: &Self) -> bool { 6 !self.operator_eq_symbol(rhs) 7 } 8}