pub trait ArgAgg {
    fn arg_min(&self) -> Option<usize> { ... }
    fn arg_max(&self) -> Option<usize> { ... }
}
Expand description

Argmin/ Argmax

Provided Methods

Get the index of the minimal value

Get the index of the maximal value

Implementors