> Is there a build in function to shift the con...
# announcements
p
Is 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
d
Best I can find is
Collections.rotate
but it's jvm specific....
👍 2
p
Great, thanks, that will do me for now 🙂