Skip to main content

luaur_analysis/methods/
path_operator_ne.rs

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