ROL (rotate-left) function
ROL: func ["Rotate Left" s [series!] n [integer!]][
n: n // length? s
append copy at s add n 1 copy/part s n
]
11304 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
ROL: func ["Rotate Left" s [series!] n [integer!]][
n: n // length? s
append copy at s add n 1 copy/part s n
]