Trait partition_point::SliceExt[][src]

pub trait SliceExt {
    type Item;
    fn partition_point<P>(&self, pred: P) -> usize
    where
        P: FnMut(&Self::Item) -> bool
; }

Associated Types

type Item[src]

Required methods

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

Implementations on Foreign Types

impl<T> SliceExt for [T][src]

type Item = T

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

Implementors