listStridedRemove
Revision as of 07:04, 16 December 2009 by Madpeter Zond (talk | contribs) (minor change to function to cover sending a low start value)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
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 |
<lsl> list ListStridedRemove(list src, integer start, integer end, integer stride) {
// fixed and improved by Madpeter Zond (the wiki entry is trash please update it) if((start < 1)
Examples
<lsl>list customers = ListStridedRemove(customers, 0, 0, STRIDELENGTH);</lsl>