ll.List2ListStrided

ll.List2ListStrided(ListVariable: list, Start: number, End: number, Stride: number) : list

Copies the strided slice of the list from Start to End. Returns a copy of the strided slice of the specified list from Start to End.

Example

ll.List2ListStrided(
  {},
  11,
  1,
  2
)
{
  "def": "func",
  "desc": "Copies the strided slice of the list from Start to End.\nReturns a copy of the strided slice of the specified list from Start to End.",
  "energy": 10,
  "sleep": 0,
  "pure": true,
  "link": "https://wiki.secondlife.com/wiki/LlList2ListStrided",
  "name": "List2ListStrided",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "list"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "ListVariable",
          "desc": "",
          "type": [
            "list"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Start",
          "desc": "",
          "type": [
            "integer",
            "number"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "End",
          "desc": "",
          "type": [
            "integer",
            "number"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Stride",
          "desc": "",
          "type": [
            "integer",
            "number"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll