Is is possible to do a single iteration run over a full Vec<_>
with offset?
Say the vector consists of [1, 2, 3, 4, 5, 6]
and I want a loop that gets 4, 5, 6, 1, 2, 3 knowing the index for 4.
I know I can do it in two parts by "skipping" to index 3 and then only allowing to go to index 2 in another loop but wondering if there's a nice way to get this kind of iteration in one go.