ListStridedRemove
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Contents |
Summary
Function: list ListStridedRemove( list src, integer start, integer end, integer stride );
Removes a specified part of a strided list.
Returns a list that contains the elements of myList but with the strides in the range of start to end removed.
| • list | src | |||
| • integer | start | |||
| • integer | end | |||
| • integer | stride |
list ListStridedRemove(list src, integer start, integer end, integer stride) { return llDeleteSubList(src, start * stride, (stride * (end + 1)) - 1); }
See also: Strided Lists

