Difference between revisions of "ListStridedMove"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 26: Line 26:
|notes
|notes
|cat1=Examples
|cat1=Examples
|cat2=UD_Functions
|cat2=User-Defined Functions
|cat3
|cat3
|cat4
|cat4
}}
}}

Revision as of 15:03, 25 May 2010

Summary

Function: list ListStridedMove( list myList, integer start, integer end, integer stride, integer target );

Moves a stride from one position to another position.
Returns a list that contains the elements of myList but with the strides in the range of start to end moved to the stride position target.

• list myList
• integer start
• integer end
• integer stride
• integer target

<lsl>list ListStridedMove(list myList, integer start, integer end, integer stride, integer target) {

   if(stride <= 0) stride = 1;
   list item = llList2List(myList, start *= stride, end = ((stride * (end + 1)) - 1));
   return llListInsertList(llDeleteSubList(myList, start, end), myList = item, target * stride);

}</lsl>

See also: Strided Lists

Examples