|
|
ShiftC
When applied to an array and an integer, ShiftC produces an array which is obtained by a cyclic right shift of the original array. The size of the shift is specified by the integer (negative values correspond to left shifts).
Examples: cyclic-shift((a, b, c, d), 1) = (d, a, b, c) cyclic-shift((a, b, c, d), -1) = (b, c, d, a) cyclic-shift((a, b, c, d), -5) = (b, c, d, a)
Special compound model elements
|