Trait shine_store::stdext::SliceOrdExt[][src]

pub trait SliceOrdExt {
    type Item: Ord;
    fn lower_bound(&self, x: &Self::Item) -> usize;
fn lower_bound_by<'a, F>(&'a self, f: F) -> usize
    where
        F: FnMut(&'a Self::Item) -> Ordering
; }

Extension trait for slices of #Ord items

Associated Types

Required Methods

Implementations on Foreign Types

impl<T: Ord> SliceOrdExt for [T]
[src]

Implementors