ArrayGetValuesByIndexArray Op
Pick values from input array at given indices and stride
Summary (oneliner)
Base example
const input_array = ['I', 'love', 'not', 'cables'];
const array_stride = 1;
const index_array = [0, 1, 3];
const result = ['I', 'love', 'cables'];
Advanced case, changing the input stride
Changing the stride is helpful to pick values from Array2, Array3 or Array4.
const input_array = [0,0,0, 1,1,1, 2,2,2];
const stride = 3;
const index_array = [0, 2];
const result = [0,0,0, 2,2,2];
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Caniuse query
Inputs
Array (Array)
Input array with all values
Array Stride index (integer /Number)
1,2,3,4
Indices (Array)
List of indices to pick
Outputs
Results (Array)
Patches using ArrayGetValuesByIndexArray
Changelog
created op 2023-02-28 - kikohs | |
cloned op from Ops.User.kikohs.ArrayGetValuesByIndexArray 2023-03-06 - stephan | |
rename | Ops.User.stephan.ArrayGetValuesByIndexArray renamed to Ops.Dev.Arrays.ArrayGetValuesByIndexArray 2023-03-06 - stephan |
rename | Ops.Dev.Arrays.ArrayGetValuesByIndexArray renamed to Ops.Arrays.ArrayGetValuesByIndexArray 2023-03-06 - stephan |