Skip to main content

luaur_ast/methods/
position_operator_le.rs

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