ListStridedUpdate
From Second Life Wiki
| Languages: |
English |
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Contents |
Description
Function: list ListStridedUpdate( list dest, list src, integer start, integer end, integer stride );Updates part of a strided list.
Returns a list that contains the elements of dest but with the strides in the range of start to end replaced with all the elements from src.
| • list | dest | |||
| • list | src | |||
| • integer | start | |||
| • integer | end | |||
| • integer | stride |
list ListStridedUpdate(list dest, list src, integer start, integer end, integer stride) { return llListReplaceList(dest, src, start * stride, ((end + 1) * stride) - 1 ); }
See also: Strided Lists

