Skip to main content

luaur_ast/methods/
location_operator_ne.rs

1use crate::records::location::Location;
2
3impl Location {
4    #[inline]
5    pub fn operator_ne(&self, rhs: &Location) -> bool {
6        self != rhs
7    }
8}