Paul N
01/01/2020, 3:27 PMIs there a build in function to shift the contents of a list right or left ?
e.g. list of 1,2,3 would go to 2,3,1 if I shifted right
Dominaezzz
01/01/2020, 3:58 PMCollections.rotate
but it's jvm specific....Paul N
01/01/2020, 5:02 PM