Skip to main content

luaur_ast/methods/
position_operator_ge.rs

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