pub trait IdentifyLast: Iterator {
    fn identify_last(self) -> Iter<Self>Notable traits for Iter<It>impl<It> Iterator for Iter<It> where
    It: Iterator
type Item = (bool, <It as Iterator>::Item);
; }
Available on crate feature __utils only.
Expand description

Copied from https://users.rust-lang.org/t/iterator-need-to-identify-the-last-element/8836/3

Required Methods

Implementors