pub trait ArgAgg { // Required methods fn arg_min(&self) -> Option<usize>; fn arg_max(&self) -> Option<usize>; }
Argmin/ Argmax
Get the index of the minimal value
Get the index of the maximal value