Trait sstable::iterator::Comparator [] [src]

pub trait Comparator: Copy {
    fn cmp(&self, &[u8], &[u8]) -> Ordering;
}

Trait used to influence how SkipMap determines the order of elements. Use StandardComparator for the normal implementation using numerical comparison.

Required Methods

Implementors