Rotate 1D Array

Rotates the elements of array the number of places and in the direction indicated by n. The connector pane displays the default data types for this polymorphic function.

n must be a numeric data type. The function coerces n to a 32-bit integer if you wire another representation to it.
array can be a 1D array of any type.
array is the output array. For example, if n is 1, the input array[0] becomes the output array[1], input array[1] becomes output array[2], and so on, and input array[n–1] becomes output array[0]. If n is –2, input array[0] becomes output array[n–2], input array[1] becomes output array[n–1], and so on, and input array[n–1] becomes output array[n–3].