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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".