pub fn permute_input_with_index_order<T>(
inputs: Vec<T>,
order: Vec<usize>,
) -> Vec<T>where
T: Clone,Expand description
This function permutes the provided input vector inputs, given some order provided within the
order vector.
ยงExamples
let output = permute_input_with_index_order(vec![1, 2, 3], vec![2, 1, 0]); // Output is [3, 2, 1] now