pub trait IntervalOrder {
    fn left_compare(&self, other: &Self) -> Ordering;
}
Expand description

Trait for comparing two intervals

Required Methods

Will compare leftest bin first. if they are equal: will compare right bin

Implementors