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