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

Trait for comparing two intervals

Required Methods§

source

fn left_compare(&self, other: &Self) -> Ordering

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

Object Safety§

This trait is not object safe.

Implementors§