fn sum[T; const N: u32](self: &NDArray[T; N]) -> T
Sum of all elements.
Source: reductions.joule:17
fn sum[T; const N: u32](self: &NDArray[T; N]) -> TSum of all elements.
Source: reductions.joule:17
fn prod[T; const N: u32](self: &NDArray[T; N]) -> TProduct of all elements.
Source: reductions.joule:22
fn min[T; const N: u32](self: &NDArray[T; N]) -> TMinimum element value.
Source: reductions.joule:27
fn max[T; const N: u32](self: &NDArray[T; N]) -> TMaximum element value.
Source: reductions.joule:32
fn mean[T; const N: u32](self: &NDArray[T; N]) -> TArithmetic mean of all elements.
Source: reductions.joule:38
fn argmin[T; const N: u32](self: &NDArray[T; N]) -> usizeIndex of the minimum element (flat index into data).
Source: reductions.joule:47
fn argmax[T; const N: u32](self: &NDArray[T; N]) -> usizeIndex of the maximum element (flat index into data).
Source: reductions.joule:52
fn any[T; const N: u32](self: &NDArray[T; N]) -> boolTrue if any element is nonzero.
Source: reductions.joule:61
fn all[T; const N: u32](self: &NDArray[T; N]) -> boolTrue if all elements are nonzero.
Source: reductions.joule:66