Trait partition_point::RangeBoundsExt[][src]

pub trait RangeBoundsExt<T: PrimitiveInteger>: RangeBounds<T> {
    fn partition_point<P>(&self, pred: P) -> T
    where
        P: FnMut(T) -> bool
, { ... } }

Provided methods

fn partition_point<P>(&self, pred: P) -> T where
    P: FnMut(T) -> bool
[src]

Implementors

impl<T: PrimitiveInteger, R: RangeBounds<T>> RangeBoundsExt<T> for R[src]