Difference between revisions of "ListStridedMove"

From Second Life Wiki
Jump to navigation Jump to search
(it had nothing to do with strides.)
m
Line 25: Line 25:
|also_articles
|also_articles
|notes
|notes
|cat1=Example
|cat1=Examples
|cat2
|cat2
|cat3
|cat3
|cat4
|cat4
}}
}}

Revision as of 17:16, 14 July 2008

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 is myList 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);
   return llListInsertList((myList = []) + llDeleteSubList(myList, start, end), item, destination * stride);

}</lsl>

See also: Strided Lists

Examples