foreach(n; 0..chunks)
comp_arr[n] = values[(n * step_size) + n]
if(!all_same(comp_arr, comp_arr[0]))It would eliminate an entire 2 lines of code for each time I want strides, to be able to do this:
if(!all_same(bytes[i..$..step_size])
Meaning, start with i, grab all elements at i + block_size * n until
block_size * n > bytes.length. Right?
-Kai Meyer
