ll.Base64ToInteger

ll.Base64ToInteger (Text: string) -> number

Returns an integer that is the Text, Base64 decoded as a big endian integer. Returns zero if Text is longer then 8 characters. If Text contains fewer then 6 characters, the return value is unpredictable.

Example

ll.Base64ToInteger('test')
Raw function spec json
{
  "def": "func",
  "desc": "Returns an integer that is the Text, Base64 decoded as a big endian integer.\nReturns zero if Text is longer then 8 characters. If Text contains fewer then 6 characters, the return value is unpredictable.",
  "energy": 10,
  "sleep": 0,
  "must_use": true,
  "link": "https://wiki.secondlife.com/wiki/LlBase64ToInteger",
  "private": false,
  "takesSelf": false,
  "name": "Base64ToInteger",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Text",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll