pub trait IdentifyLast: Iterator + Sized {
    // Required method
    fn identify_last(self) -> Iter<Self> ;
}

Required Methods§

source

fn identify_last(self) -> Iter<Self>

Implementors§

source§

impl<It> IdentifyLast for Itwhere It: Iterator,