pub unsafe trait Permute<T, N: ArrayLength> {
    // Required method
    fn permute(self, values: &NumericArray<T, N>) -> NumericArray<T, N>;
}Expand description
Rearranges one numeric array into another using the supplied indices
Required Methods§
Sourcefn permute(self, values: &NumericArray<T, N>) -> NumericArray<T, N>
 
fn permute(self, values: &NumericArray<T, N>) -> NumericArray<T, N>
Performs the permutation