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')
Raw function spec json
{
  "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,
  "must_use": true,
  "link": "https://wiki.secondlife.com/wiki/LlDumpList2String",
  "private": false,
  "takesSelf": false,
  "name": "DumpList2String",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Source",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "list"
            }
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Separator",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll