Skip to main content

luaur_ast/methods/
position_operator_ne.rs

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