ll.DumpList2String

ll.DumpList2String(Source: list, Separator: string) : string

Returns the list as a single string, using Separator between the entries. Write the list out as a single string, using Separator between values.

Example

ll.DumpList2String({}, 'test')
{
  "def": "func",
  "desc": "Returns the list as a single string, using Separator between the entries.\nWrite the list out as a single string, using Separator between values.",
  "energy": 10,
  "sleep": 0,
  "pure": true,
  "link": "https://wiki.secondlife.com/wiki/LlDumpList2String",
  "name": "DumpList2String",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "string"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Source",
          "desc": "",
          "type": [
            "list"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Separator",
          "desc": "",
          "type": [
            "string"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll