lance_linalg::kernels

Function argmin

Source
pub fn argmin<T: Num + PartialOrd + Copy + Bounded>(
    iter: impl Iterator<Item = T>,
) -> Option<u32>
Expand description

Argmin over an iterator. Fused the operation in iterator to avoid memory allocation.

Returns the index of the min value in the array.