Trait aryth::indicator::vector::Indicators[][src]

pub trait Indicators: IntoIterator {
    fn max_by<T, F>(self, indicator: F) -> Option<T>
    where
        Self: Sized,
        Self::IntoIter: Iterator<Item = Self::Item>,
        F: Fn(Self::Item) -> T,
        T: Ord
, { ... }
fn min_by<T, F>(self, indicator: F) -> Option<T>
    where
        Self: Sized,
        Self::IntoIter: Iterator<Item = Self::Item>,
        F: Fn(Self::Item) -> T,
        T: Ord
, { ... } }

Provided methods

Implementors