Trait e_ring::FindRange[][src]

pub trait FindRange<T> {
    fn range(&self) -> Option<Range<T>>;
}

Trait defining a range method to find min and max in one iteration

Required methods

fn range(&self) -> Option<Range<T>>[src]

calculate min and max with one iteration

Loading content...

Implementors

impl<T: PartialOrd + Copy + Default, const N: usize> FindRange<T> for Ring<T, N>[src]

Loading content...