ll.ListReplaceList (Target: list, ListVariable: list, Start: number, End: number) -> listReturns a list that is Target with Start through End removed and ListVariable inserted at Start. Returns a list replacing the slice of the Target list from Start to End with the specified ListVariable. Start and End are inclusive, so 0, 1 would replace the first two entries and 0, 0 would replace only the first list entry.
ll.ListReplaceList(
{},
{},
3.14,
3.14
)
{
"def": "func",
"desc": "Returns a list that is Target with Start through End removed and ListVariable inserted at Start.\nReturns a list replacing the slice of the Target list from Start to End with the specified ListVariable. Start and End are inclusive, so 0, 1 would replace the first two entries and 0, 0 would replace only the first list entry.",
"energy": 10,
"sleep": 0,
"must_use": true,
"link": "https://wiki.secondlife.com/wiki/LlListReplaceList",
"private": false,
"takesSelf": false,
"name": "ListReplaceList",
"signatures": [
{
"def": "signature",
"result": [
{
"name": "",
"def": "result",
"desc": "",
"variadic": false,
"type": [
{
"def": "simple",
"value": "list"
}
],
"optional": false
}
],
"args": [
{
"def": "arg",
"name": "Target",
"desc": "",
"type": [
{
"def": "simple",
"value": "list"
}
],
"variadic": false,
"optional": false
},
{
"def": "arg",
"name": "ListVariable",
"desc": "",
"type": [
{
"def": "simple",
"value": "list"
}
],
"variadic": false,
"optional": false
},
{
"def": "arg",
"name": "Start",
"desc": "",
"type": [
{
"def": "simple",
"value": "number"
}
],
"variadic": false,
"optional": false
},
{
"def": "arg",
"name": "End",
"desc": "",
"type": [
{
"def": "simple",
"value": "number"
}
],
"variadic": false,
"optional": false
}
]
}
]
}